Skip to content

Commit 63e565b

Browse files
committed
Fix checkstyle error
1 parent 874fe5d commit 63e565b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

driver-core/src/main/com/mongodb/operation/OperationHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ static boolean canRetryWrite(final ServerDescription serverDescription, final Co
276276
LOGGER.debug("retryWrites set to true but the server is a standalone server.");
277277
return false;
278278
} else if (!sessionContext.hasSession()) {
279-
LOGGER.debug("retryWrites set to true but there is no implicit session, likely because the MongoClient was created with " +
280-
"multiple MongoCredential instances and sessions can only be used with a single MongoCredential");
279+
LOGGER.debug("retryWrites set to true but there is no implicit session, likely because the MongoClient was created with "
280+
+ "multiple MongoCredential instances and sessions can only be used with a single MongoCredential");
281281
return false;
282282
}
283283
return true;

0 commit comments

Comments
 (0)