Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit e6cab0c

Browse files
committed
fix: lint
Change-Id: Ib8c6b56569c17997a126065a6fa00e8bb1604494
1 parent dff1361 commit e6cab0c

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/gaxx/grpc/BigtableChannelPool.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -451,16 +451,16 @@ static class Entry {
451451

452452
private final AtomicInteger maxOutstanding = new AtomicInteger();
453453

454-
/**
455-
* Queue storing the last 5 minutes of probe results
456-
*/
454+
/** Queue storing the last 5 minutes of probe results */
457455
@VisibleForTesting
458456
final ConcurrentLinkedQueue<ProbeResult> probeHistory = new ConcurrentLinkedQueue<>();
459457

460458
/**
461-
* Keep both # of failed and # of successful probes so that we don't have to check size() on the ConcurrentLinkedQueue all the time
459+
* Keep both # of failed and # of successful probes so that we don't have to check size() on the
460+
* ConcurrentLinkedQueue all the time
462461
*/
463462
final AtomicInteger failedProbesInWindow = new AtomicInteger();
463+
464464
final AtomicInteger successfulProbesInWindow = new AtomicInteger();
465465

466466
// Flag that the channel should be closed once all the outstanding RPCs complete.

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/gaxx/grpc/ChannelPoolHealthChecker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import com.google.auto.value.AutoValue;
2020
import com.google.bigtable.v2.PingAndWarmResponse;
2121
import com.google.cloud.bigtable.data.v2.stub.BigtableChannelPrimer;
22-
import com.google.cloud.bigtable.data.v2.stub.NoOpChannelPrimer;
2322
import com.google.cloud.bigtable.gaxx.grpc.BigtableChannelPool.Entry;
2423
import com.google.common.annotations.VisibleForTesting;
2524
import com.google.common.collect.ImmutableList;

0 commit comments

Comments
 (0)