You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/08/05 15:47:08 UTC

git commit: ACCUMULO-1629 fix unused import warning

Updated Branches:
  refs/heads/master a54dbe2e2 -> bf320f849


ACCUMULO-1629 fix unused import warning


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

Branch: refs/heads/master
Commit: bf320f8493c4bcc88d98d746ba57c0984e52596b
Parents: a54dbe2
Author: Eric Newton <ec...@apache.org>
Authored: Mon Aug 5 09:47:20 2013 -0400
Committer: Eric Newton <ec...@apache.org>
Committed: Mon Aug 5 09:47:20 2013 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/test/functional/CloneTestIT.java   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/bf320f84/test/src/test/java/org/apache/accumulo/test/functional/CloneTestIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/functional/CloneTestIT.java b/test/src/test/java/org/apache/accumulo/test/functional/CloneTestIT.java
index ee2b26a..c238e96 100644
--- a/test/src/test/java/org/apache/accumulo/test/functional/CloneTestIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/functional/CloneTestIT.java
@@ -16,9 +16,9 @@
  */
 package org.apache.accumulo.test.functional;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
 
-import java.util.Arrays;
 import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
@@ -39,7 +39,6 @@ import org.apache.accumulo.core.data.Key;
 import org.apache.accumulo.core.data.Mutation;
 import org.apache.accumulo.core.data.Value;
 import org.apache.accumulo.core.security.Authorizations;
-import org.apache.commons.math.stat.clustering.Cluster;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.FileStatus;
 import org.apache.hadoop.fs.FileSystem;