Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 73674100CF for ; Mon, 5 Aug 2013 13:47:09 +0000 (UTC) Received: (qmail 80971 invoked by uid 500); 5 Aug 2013 13:47:09 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 80910 invoked by uid 500); 5 Aug 2013 13:47:09 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 80903 invoked by uid 99); 5 Aug 2013 13:47:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Aug 2013 13:47:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id A9E198B8D4B; Mon, 5 Aug 2013 13:47:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ecn@apache.org To: commits@accumulo.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: ACCUMULO-1629 fix unused import warning Date: Mon, 5 Aug 2013 13:47:08 +0000 (UTC) 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 Authored: Mon Aug 5 09:47:20 2013 -0400 Committer: Eric Newton 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;