You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2016/06/20 23:49:55 UTC

[03/23] accumulo git commit: ACCUMULO-4157 Remove warning (unused private field)

ACCUMULO-4157 Remove warning (unused private field)


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/40d24183
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/40d24183
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/40d24183

Branch: refs/heads/1.8
Commit: 40d2418346383809ecce322d4d3de62f17dd1558
Parents: d5ea00f
Author: Christopher Tubbs <ct...@apache.org>
Authored: Mon Jun 20 13:37:36 2016 -0400
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Mon Jun 20 13:37:36 2016 -0400

----------------------------------------------------------------------
 .../org/apache/accumulo/gc/GarbageCollectWriteAheadLogs.java  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/40d24183/server/gc/src/main/java/org/apache/accumulo/gc/GarbageCollectWriteAheadLogs.java
----------------------------------------------------------------------
diff --git a/server/gc/src/main/java/org/apache/accumulo/gc/GarbageCollectWriteAheadLogs.java b/server/gc/src/main/java/org/apache/accumulo/gc/GarbageCollectWriteAheadLogs.java
index b7d8d92..a22a34e 100644
--- a/server/gc/src/main/java/org/apache/accumulo/gc/GarbageCollectWriteAheadLogs.java
+++ b/server/gc/src/main/java/org/apache/accumulo/gc/GarbageCollectWriteAheadLogs.java
@@ -16,7 +16,6 @@
  */
 package org.apache.accumulo.gc;
 
-import com.google.common.annotations.VisibleForTesting;
 import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.util.ArrayList;
@@ -28,10 +27,12 @@ import java.util.Map;
 import java.util.Map.Entry;
 import java.util.Set;
 import java.util.UUID;
+import java.util.concurrent.TimeUnit;
 
 import org.apache.accumulo.core.Constants;
 import org.apache.accumulo.core.client.Instance;
 import org.apache.accumulo.core.conf.AccumuloConfiguration;
+import org.apache.accumulo.core.conf.Property;
 import org.apache.accumulo.core.gc.thrift.GCStatus;
 import org.apache.accumulo.core.gc.thrift.GcCycleStats;
 import org.apache.accumulo.core.tabletserver.log.LogEntry;
@@ -55,9 +56,8 @@ import org.apache.log4j.Logger;
 import org.apache.thrift.TException;
 import org.apache.zookeeper.KeeperException;
 
+import com.google.common.annotations.VisibleForTesting;
 import com.google.common.net.HostAndPort;
-import java.util.concurrent.TimeUnit;
-import org.apache.accumulo.core.conf.Property;
 
 public class GarbageCollectWriteAheadLogs {
   private static final Logger log = Logger.getLogger(GarbageCollectWriteAheadLogs.class);
@@ -65,7 +65,6 @@ public class GarbageCollectWriteAheadLogs {
   private final Instance instance;
   private final VolumeManager fs;
   private final Map<HostAndPort,Long> firstSeenDead = new HashMap<HostAndPort,Long>();
-  private AccumuloConfiguration config;
 
   private boolean useTrash;