DBZ-2141 Fix formatting

This commit is contained in:
jgraf50 2020-07-07 15:35:36 -07:00 committed by Chris Cranford
parent ce7a44cb71
commit a7d66ed4e4

View File

@ -26,8 +26,7 @@ protected boolean isRetriable(Throwable throwable) {
while ((cause != null) && (cause != throwable)) { while ((cause != null) && (cause != throwable)) {
if (cause instanceof com.mongodb.MongoSocketException) { if (cause instanceof com.mongodb.MongoSocketException) {
return true; return true;
} } else {
else {
cause = cause.getCause(); cause = cause.getCause();
} }
} }