Skip to content

Commit 9e4c31f

Browse files
committed
chore(spanner): lint fix
1 parent 5aae0d0 commit 9e4c31f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/MultiplexedSessionDatabaseClient.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@ private void maybeMarkUnimplementedForRW(SpannerException spannerException) {
300300
}
301301
}
302302

303-
// TODO:
304303
private void verifyBeginTransactionWithRWOnMultiplexedSession(String sessionName) {
305304
BeginTransactionRequest.Builder requestBuilder =
306305
BeginTransactionRequest.newBuilder()
@@ -327,8 +326,7 @@ private void verifyBeginTransactionWithRWOnMultiplexedSession(String sessionName
327326
} catch (Exception e) {
328327
SpannerException spannerException = SpannerExceptionFactory.newSpannerException(e);
329328
// Mark multiplexed sessions for RW as unimplemented and fall back to regular sessions
330-
// if
331-
// UNIMPLEMENTED is returned.
329+
// if UNIMPLEMENTED is returned.
332330
maybeMarkUnimplementedForRW(spannerException);
333331
readWriteBeginTransactionReferenceFuture.setException(e);
334332
}

0 commit comments

Comments
 (0)