DATAMONGO-1725 - Prevent NullPointerException in CloseableIterableCursorAdapter.close().

This commit is contained in:
Oliver Gierke
2017-07-05 13:06:33 +02:00
parent 270d373083
commit 0470dd6268

View File

@@ -2740,8 +2740,13 @@ public class MongoTemplate implements MongoOperations, ApplicationContextAware,
public void close() {
MongoCursor<Document> c = cursor;
try {
c.close();
if (c != null) {
c.close();
}
} catch (RuntimeException ex) {
throw potentiallyConvertRuntimeException(ex, exceptionTranslator);
} finally {