You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2003/10/24 14:51:49 UTC

cvs commit: cocoon-2.2/src/java/org/apache/cocoon Main.java

cziegeler    2003/10/24 05:51:49

  Modified:    src/java/org/apache/cocoon Main.java
  Log:
  Removing verbose from the Bean
  
  Revision  Changes    Path
  1.24      +1 -10     cocoon-2.2/src/java/org/apache/cocoon/Main.java
  
  Index: Main.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.2/src/java/org/apache/cocoon/Main.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Main.java	17 Oct 2003 17:49:24 -0000	1.23
  +++ Main.java	24 Oct 2003 12:51:49 -0000	1.24
  @@ -82,7 +82,6 @@
   
       protected static final String HELP_OPT =               "h";
       protected static final String VERSION_OPT =            "v";
  -    protected static final String VERBOSE_OPT =            "V";
       protected static final String LOG_KIT_OPT =            "k";
       protected static final String LOGGER_OPT =             "l";
       protected static final String LOG_LEVEL_OPT =          "u";
  @@ -141,11 +140,6 @@
                                        false,
                                        "print the version information and exit"));
   
  -        options.addOption(new Option(VERBOSE_OPT,
  -                                     VERBOSE_LONG,
  -                                     false,
  -                                     "enable verbose messages to System.out"));
  -
           options.addOption(new Option(LOG_KIT_OPT,
                                        LOG_KIT_LONG,
                                        true,
  @@ -278,9 +272,6 @@
               destDir = line.getOptionValue(DEST_DIR_OPT);
           }
   
  -        if (line.hasOption(VERBOSE_OPT)) {
  -            cocoon.setVerbose(true);
  -        }
           if (line.hasOption(PRECOMPILE_ONLY_OPT)) {
               cocoon.setPrecompileOnly(true);
           }