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 B0FD9109F0 for ; Fri, 1 Nov 2013 03:04:23 +0000 (UTC) Received: (qmail 13771 invoked by uid 500); 1 Nov 2013 03:04:21 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 13467 invoked by uid 500); 1 Nov 2013 03:04:18 -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 13431 invoked by uid 99); 1 Nov 2013 03:04:17 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Nov 2013 03:04:17 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 9C324D1EB; Fri, 1 Nov 2013 03:04:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Message-Id: <06b1886a6d044a24aa5053748e98c252@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: ACCUMULO-1842 Fix Main to actually reference the correct class. Date: Fri, 1 Nov 2013 03:04:15 +0000 (UTC) Updated Branches: refs/heads/master 05d5921c0 -> e639ac33b ACCUMULO-1842 Fix Main to actually reference the correct class. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/e639ac33 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/e639ac33 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/e639ac33 Branch: refs/heads/master Commit: e639ac33b0a19252ce04d250717b918558f39014 Parents: 05d5921 Author: Josh Elser Authored: Thu Oct 31 23:03:43 2013 -0400 Committer: Josh Elser Committed: Thu Oct 31 23:03:43 2013 -0400 ---------------------------------------------------------------------- start/src/main/java/org/apache/accumulo/start/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/e639ac33/start/src/main/java/org/apache/accumulo/start/Main.java ---------------------------------------------------------------------- diff --git a/start/src/main/java/org/apache/accumulo/start/Main.java b/start/src/main/java/org/apache/accumulo/start/Main.java index 09518ff..ead1e0f 100644 --- a/start/src/main/java/org/apache/accumulo/start/Main.java +++ b/start/src/main/java/org/apache/accumulo/start/Main.java @@ -52,7 +52,7 @@ public class Main { } else if (args[0].equals("shell")) { runTMP = cl.loadClass("org.apache.accumulo.core.util.shell.Shell"); } else if (args[0].equals("init")) { - runTMP = cl.loadClass("org.apache.accumulo.server.util.Initialize"); + runTMP = cl.loadClass("org.apache.accumulo.server.init.Initialize"); } else if (args[0].equals("admin")) { runTMP = cl.loadClass("org.apache.accumulo.server.util.Admin"); } else if (args[0].equals("gc")) {