asfgit closed pull request #312: ACCUMULO-4702 Fix unused import from previous merge URL: https://github.com/apache/accumulo/pull/312
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java b/test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java index 4cd1e2704b..a337091040 100644 --- a/test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java +++ b/test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java @@ -16,6 +16,8 @@ */ package org.apache.accumulo.test.performance.thrift; +import static org.apache.accumulo.fate.util.UtilWaitThread.sleepUninterruptibly; + import java.net.InetAddress; import java.nio.ByteBuffer; import java.util.ArrayList; @@ -68,6 +70,7 @@ import org.apache.accumulo.core.tabletserver.thrift.TabletClientService.Processor; import org.apache.accumulo.core.tabletserver.thrift.TabletStats; import org.apache.accumulo.core.trace.thrift.TInfo; +import org.apache.accumulo.core.util.HostAndPort; import org.apache.accumulo.server.AccumuloServerContext; import org.apache.accumulo.server.client.ClientServiceHandler; import org.apache.accumulo.server.client.HdfsZooInstance; @@ -83,10 +86,6 @@ import org.apache.thrift.TException; import com.beust.jcommander.Parameter; -import org.apache.accumulo.core.util.HostAndPort; - -import static org.apache.accumulo.fate.util.UtilWaitThread.sleepUninterruptibly; -import org.apache.accumulo.core.tabletserver.thrift.TUnloadTabletGoal; /** * The purpose of this class is to server as fake tserver that is a data sink like /dev/null. NullTserver modifies the metadata location entries for a table to ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
