Ignore:
Timestamp:
2004-10-08T09:46:12+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all Gatherer.print* with DebugStream.print*.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/GetOpt.java

    r8229 r8236  
    112112        //    value. We are ready to store the data in the
    113113        //    appropriate variables.
    114         Gatherer.println("Parsed Argument: name=" + argument_name + (argument_value != null ? (", value=" + argument_value) : ", no value"));
     114        DebugStream.println("Parsed Argument: name=" + argument_name + (argument_value != null ? (", value=" + argument_value) : ", no value"));
    115115        // 3a. First those arguments that have no associated value
    116116        if(argument_value == null) {
    117117            if(argument_name.equals(StaticStrings.HELP_ARGUMENT)) {
    118             Gatherer.printUsage(dictionary);
     118            System.out.println(Dictionary.get("General.Usage"));
    119119            System.exit(0);
    120120            }
Note: See TracChangeset for help on using the changeset viewer.