This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 62223f1e27 Fix trivial warnings
62223f1e27 is described below

commit 62223f1e27ed6e357fa5e979162339f4f83e1a69
Author: Christopher Tubbs <[email protected]>
AuthorDate: Mon Feb 9 15:08:07 2026 -0500

    Fix trivial warnings
    
    * Suppress warning about deprecated for removal enum
    * Remove unused Logger
---
 .../org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java  | 1 +
 .../org/apache/accumulo/manager/tableOps/bulkVer2/BulkImportMove.java | 4 ----
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
 
b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
index f986718203..94b5147ad9 100644
--- 
a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
+++ 
b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImpl.java
@@ -786,6 +786,7 @@ public class MiniAccumuloClusterImpl implements 
AccumuloCluster {
     return Stream.of(procs).map(ProcessReference::new).collect(toList());
   }
 
+  @SuppressWarnings("removal")
   public Map<ServerType,Collection<ProcessReference>> getProcesses() {
     Map<ServerType,Collection<ProcessReference>> result = new HashMap<>();
     MiniAccumuloClusterControl control = getClusterControl();
diff --git 
a/server/manager/src/main/java/org/apache/accumulo/manager/tableOps/bulkVer2/BulkImportMove.java
 
b/server/manager/src/main/java/org/apache/accumulo/manager/tableOps/bulkVer2/BulkImportMove.java
index 6eb247b33c..492a61efd6 100644
--- 
a/server/manager/src/main/java/org/apache/accumulo/manager/tableOps/bulkVer2/BulkImportMove.java
+++ 
b/server/manager/src/main/java/org/apache/accumulo/manager/tableOps/bulkVer2/BulkImportMove.java
@@ -41,8 +41,6 @@ import org.apache.accumulo.manager.tableOps.ManagerRepo;
 import org.apache.accumulo.server.fs.VolumeManager;
 import org.apache.accumulo.server.zookeeper.TransactionWatcher.ZooArbitrator;
 import org.apache.hadoop.fs.Path;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 /**
  * Bulk import makes requests of tablet servers, and those requests can take a 
long time. Our
@@ -63,8 +61,6 @@ class BulkImportMove extends ManagerRepo {
 
   private static final long serialVersionUID = 1L;
 
-  private static final Logger log = 
LoggerFactory.getLogger(BulkImportMove.class);
-
   private final BulkInfo bulkInfo;
 
   public BulkImportMove(BulkInfo bulkInfo) {

Reply via email to