Skip to content

Commit 2f6c194

Browse files
chore: generate libraries at Mon Jan 6 12:21:48 UTC 2025
1 parent 13ff2db commit 2f6c194

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ public ApiFuture<Void> setCallback(Executor exec, ReadyCallback cb) {
490490
this.result = SettableApiFuture.create();
491491
this.state = State.STREAMING_INITIALIZED;
492492
this.service.execute(new InitiateStreamingRunnable());
493-
// initiateProduceRows();
493+
// initiateProduceRows();
494494
this.executor = MoreExecutors.newSequentialExecutor(Preconditions.checkNotNull(exec));
495495
this.callback = Preconditions.checkNotNull(cb);
496496
pausedLatch.countDown();

google-cloud-spanner/src/test/java/com/google/cloud/spanner/RetryOnInvalidatedSessionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1593,7 +1593,7 @@ private void asyncTransactionManager_readAsync(
15931593
AsyncTransactionStep<Void, Long> count =
15941594
context.then(
15951595
(transaction, ignored) -> {
1596-
try(AsyncResultSet rs = fn.apply(transaction)) {
1596+
try (AsyncResultSet rs = fn.apply(transaction)) {
15971597
ApiFuture<Void> fut =
15981598
rs.setCallback(
15991599
queryExecutor,

0 commit comments

Comments
 (0)