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 B0A831050E for ; Mon, 13 Jan 2014 20:52:19 +0000 (UTC) Received: (qmail 80788 invoked by uid 500); 13 Jan 2014 20:06:11 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 80459 invoked by uid 500); 13 Jan 2014 20:05:42 -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 80307 invoked by uid 99); 13 Jan 2014 20:05:33 -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, 13 Jan 2014 20:05:33 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2ABA28318D9; Mon, 13 Jan 2014 20:05:33 +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 Date: Mon, 13 Jan 2014 20:05:33 -0000 Message-Id: <47bb875263c643fd93767c6b31307198@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: ACCUMULO-2125 fix deprecated warnings Updated Branches: refs/heads/1.6.0-SNAPSHOT 9d1e171e2 -> 782262a6b ACCUMULO-2125 fix deprecated warnings Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6c4fa8ee Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6c4fa8ee Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6c4fa8ee Branch: refs/heads/1.6.0-SNAPSHOT Commit: 6c4fa8ee5bdbafd032ac76e5a4a4884dd9e59723 Parents: 3ab5c3e Author: Eric Newton Authored: Mon Jan 13 15:03:28 2014 -0500 Committer: Eric Newton Committed: Mon Jan 13 15:03:28 2014 -0500 ---------------------------------------------------------------------- .../test/java/org/apache/accumulo/test/functional/ScannerIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/6c4fa8ee/test/src/test/java/org/apache/accumulo/test/functional/ScannerIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/ScannerIT.java b/test/src/test/java/org/apache/accumulo/test/functional/ScannerIT.java index e364b46..f2211e5 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/ScannerIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/ScannerIT.java @@ -66,7 +66,7 @@ public class ScannerIT extends SimpleMacIT { s.setBatchSize(1); s.setRange(new Range()); - Stopwatch sw = new Stopwatch(); + Stopwatch sw = Stopwatch.createUnstarted(); Iterator> iterator = s.iterator(); sw.start(); @@ -88,7 +88,7 @@ public class ScannerIT extends SimpleMacIT { s.setBatchSize(1); s.setReadaheadThreshold(0l); - sw = new Stopwatch(); + sw = Stopwatch.createUnstarted(); iterator = s.iterator(); sw.start();