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

git commit: ACCUMULO-1842 Fix Main to actually reference the correct class.

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 <jo...@gmail.com>
Authored: Thu Oct 31 23:03:43 2013 -0400
Committer: Josh Elser <jo...@gmail.com>
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")) {