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 898F0105B0 for ; Mon, 18 Nov 2013 23:41:13 +0000 (UTC) Received: (qmail 96702 invoked by uid 500); 18 Nov 2013 23:41:12 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 96595 invoked by uid 500); 18 Nov 2013 23:41:12 -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 96511 invoked by uid 99); 18 Nov 2013 23:41:12 -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, 18 Nov 2013 23:41:12 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 61C644626D; Mon, 18 Nov 2013 23:41:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ujustgotbilld@apache.org To: commits@accumulo.apache.org Date: Mon, 18 Nov 2013 23:41:17 -0000 Message-Id: <2ec4b4c9dae443388da3837552fdbe02@git.apache.org> In-Reply-To: <003750bdf72c4fd2a2472361a416752f@git.apache.org> References: <003750bdf72c4fd2a2472361a416752f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [06/11] git commit: ACCUMULO-1858 Fixed compilation error from bad merge. ACCUMULO-1858 Fixed compilation error from bad merge. The old merge&push bit me as I was missing a '}'. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/a7c5b72d Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/a7c5b72d Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/a7c5b72d Branch: refs/heads/master Commit: a7c5b72d3b5b28775106adf87dab2f76f5c1430e Parents: 036f381 Author: Bill Slacum Authored: Mon Nov 18 14:44:55 2013 -0500 Committer: Bill Slacum Committed: Mon Nov 18 14:44:55 2013 -0500 ---------------------------------------------------------------------- .../apache/accumulo/examples/simple/client/RandomBatchWriter.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/a7c5b72d/examples/simple/src/main/java/org/apache/accumulo/examples/simple/client/RandomBatchWriter.java ---------------------------------------------------------------------- diff --git a/examples/simple/src/main/java/org/apache/accumulo/examples/simple/client/RandomBatchWriter.java b/examples/simple/src/main/java/org/apache/accumulo/examples/simple/client/RandomBatchWriter.java index a640003..845d67d 100644 --- a/examples/simple/src/main/java/org/apache/accumulo/examples/simple/client/RandomBatchWriter.java +++ b/examples/simple/src/main/java/org/apache/accumulo/examples/simple/client/RandomBatchWriter.java @@ -123,6 +123,7 @@ public class RandomBatchWriter { opts.parseArgs(RandomBatchWriter.class.getName(), args, bwOpts); if ((opts.max - opts.min) < opts.num) { System.err.println(String.format("You must specify a min and a max that allow for at least num possible values. For example, you requested %d rows, but a min of %d and a max of %d only allows for %d rows.", opts.num, opts.min, opts.max, (opts.max - opts.min))); + } Random r; if (opts.seed == null) r = new Random();