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

Commit c0082cf

Browse files
committed
remove outdated comments
Change-Id: I11e8da901a93a49009caf4caf0385fd5e3c8091b
1 parent 862135b commit c0082cf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import java.util.stream.Collectors;
3636
import javax.annotation.Nullable;
3737

38-
/** Stub for a class that will manage the health checking in the BigtableChannelPool */
38+
/** Class that manages the health checking in the BigtableChannelPool */
3939
public class ChannelPoolHealthChecker {
4040

4141
// Configuration constants
@@ -106,7 +106,7 @@ void start() {
106106
TimeUnit.MILLISECONDS);
107107
}
108108

109-
/** Stop running health checking (No-op stub) */
109+
/** Stop running health checking */
110110
public void stop() {
111111
executor.shutdownNow();
112112
}
@@ -213,7 +213,7 @@ Entry findOutlierEntry() {
213213
.orElse(null);
214214
}
215215

216-
/** Periodically detects and removes outlier channels from the pool. (No-op stub) */
216+
/** Periodically detects and removes outlier channels from the pool. */
217217
@VisibleForTesting
218218
void detectAndRemoveOutlierEntries() {
219219
if (clock.instant().isBefore(lastEviction.plus(MIN_EVICTION_INTERVAL))) {

0 commit comments

Comments
 (0)