Skip to content

Commit

Permalink
Fix spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn committed Apr 27, 2024
1 parent 9b1b009 commit 6169dd1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ public synchronized BigQueryStorageStreamSource<T> getCurrentSource() {

return null;
} finally {
future.cancel(true); // may or may not desire this
future.cancel(true);
}
} catch (FailedPreconditionException e) {
// The current source has already moved past the split point, so this split attempt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1394,10 +1394,6 @@ public StuckResponse(CountDownLatch latch) {
this.latch = latch;
}

static final Object lock = new Object();

static boolean hasNextCalled = false;

@Override
public Iterator<ReadRowsResponse> iterator() {
return new StuckIterator();
Expand Down

0 comments on commit 6169dd1

Please sign in to comment.