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

This commit is contained in:
Oliver Gierke
2017-07-05 13:06:33 +02:00
parent d365463f56
commit 8ff26ac0be

View File

@@ -2488,7 +2488,11 @@ public class MongoTemplate implements MongoOperations, ApplicationContextAware {
Cursor c = cursor;
try {
c.close();
if (c != null) {
c.close();
}
} catch (RuntimeException ex) {
throw potentiallyConvertRuntimeException(ex, exceptionTranslator);
} finally {