This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
commit 8b76290644e174b0728de8e44c6130b6412289b6 Author: Christopher Tubbs <[email protected]> AuthorDate: Wed Apr 5 13:44:51 2023 -0400 Remove unused private variable As follow-up to #3271, remove a now unused private logger variable and corresponding imports --- .../java/org/apache/accumulo/core/clientImpl/SyncingTabletLocator.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/clientImpl/SyncingTabletLocator.java b/core/src/main/java/org/apache/accumulo/core/clientImpl/SyncingTabletLocator.java index ff9a75cf3f..df40a21ce1 100644 --- a/core/src/main/java/org/apache/accumulo/core/clientImpl/SyncingTabletLocator.java +++ b/core/src/main/java/org/apache/accumulo/core/clientImpl/SyncingTabletLocator.java @@ -31,8 +31,6 @@ import org.apache.accumulo.core.data.Range; import org.apache.accumulo.core.data.TableId; import org.apache.accumulo.core.dataImpl.KeyExtent; import org.apache.hadoop.io.Text; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; /** * Syncs itself with the static collection of TabletLocators, so that when the server clears it, it @@ -40,7 +38,6 @@ import org.slf4j.LoggerFactory; * using SyncingTabletLocator. */ public class SyncingTabletLocator extends TabletLocator { - private static final Logger log = LoggerFactory.getLogger(SyncingTabletLocator.class); private volatile TabletLocator locator; private final Supplier<TabletLocator> getLocatorFunction;
