You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by bl...@apache.org on 2012/05/30 22:06:40 UTC

svn commit: r1344437 - /sqoop/branches/sqoop2/client/src/main/java/org/apache/sqoop/client/shell/ShowCommand.java

Author: blee
Date: Wed May 30 20:06:40 2012
New Revision: 1344437

URL: http://svn.apache.org/viewvc?rev=1344437&view=rev
Log:
SQOOP-365  Update show command to reflect actual implementation

Modified:
    sqoop/branches/sqoop2/client/src/main/java/org/apache/sqoop/client/shell/ShowCommand.java

Modified: sqoop/branches/sqoop2/client/src/main/java/org/apache/sqoop/client/shell/ShowCommand.java
URL: http://svn.apache.org/viewvc/sqoop/branches/sqoop2/client/src/main/java/org/apache/sqoop/client/shell/ShowCommand.java?rev=1344437&r1=1344436&r2=1344437&view=diff
==============================================================================
--- sqoop/branches/sqoop2/client/src/main/java/org/apache/sqoop/client/shell/ShowCommand.java (original)
+++ sqoop/branches/sqoop2/client/src/main/java/org/apache/sqoop/client/shell/ShowCommand.java Wed May 30 20:06:40 2012
@@ -27,11 +27,10 @@ public class ShowCommand extends SqoopCo
 {
   private ShowServerFunction serverFunction;
   private ShowVersionFunction versionFunction;
-  private ShowConnectorFunction connectorFunction;
 
   protected ShowCommand(Shell shell) {
     super(shell, "show", "\\sh",
-        new String[] {"server", "version", "connector", "connection", "job"},
+        new String[] {"server", "version", "connector"},
         "Show", "info");
   }
 
@@ -71,4 +70,4 @@ public class ShowCommand extends SqoopCo
       throw new SqoopException(ClientError.CLIENT_0002, msg);
     }
   }
-}
\ No newline at end of file
+}