You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cd...@apache.org on 2005/09/24 00:20:05 UTC

svn commit: r291212 - /portals/pluto/branches/pluto-1.1/pluto-deploy/src/main/java/org/apache/pluto/deploy/cli/AssemblerCLI.java

Author: cdoremus
Date: Fri Sep 23 15:20:01 2005
New Revision: 291212

URL: http://svn.apache.org/viewcvs?rev=291212&view=rev
Log:
Modified HelpFormatter calls to public fields in abort() to conform to commons-cli version 1.0

Modified:
    portals/pluto/branches/pluto-1.1/pluto-deploy/src/main/java/org/apache/pluto/deploy/cli/AssemblerCLI.java

Modified: portals/pluto/branches/pluto-1.1/pluto-deploy/src/main/java/org/apache/pluto/deploy/cli/AssemblerCLI.java
URL: http://svn.apache.org/viewcvs/portals/pluto/branches/pluto-1.1/pluto-deploy/src/main/java/org/apache/pluto/deploy/cli/AssemblerCLI.java?rev=291212&r1=291211&r2=291212&view=diff
==============================================================================
--- portals/pluto/branches/pluto-1.1/pluto-deploy/src/main/java/org/apache/pluto/deploy/cli/AssemblerCLI.java (original)
+++ portals/pluto/branches/pluto-1.1/pluto-deploy/src/main/java/org/apache/pluto/deploy/cli/AssemblerCLI.java Fri Sep 23 15:20:01 2005
@@ -91,8 +91,8 @@
 
     public void abort() {
         HelpFormatter help = new HelpFormatter();
-        help.setArgName("webapp");
-        help.setWidth(60);
+        help.defaultArgName = "webapp";
+        help.defaultWidth = 60;
         help.printHelp("assemble", options);
     }