Changeset 24356 for main/trunk/gli


Ignore:
Timestamp:
2011-08-01T14:35:30+12:00 (13 years ago)
Author:
ak19
Message:

Dr Bainbridge improved the display of multiple commands used to launch an External Application.

File:
1 edited

Legend:

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

    r24333 r24356  
    14181418                    StringBuffer whole_command = new StringBuffer();
    14191419                    for(int i = 0; i < commands.length; i++) {
     1420                        if (i>0) {
     1421                            whole_command.append(" ");
     1422                        }
    14201423                        whole_command.append(commands[i]);
    1421                         whole_command.append(" ");
    14221424                    }
    14231425                    DebugStream.println("Running " + whole_command.toString());
Note: See TracChangeset for help on using the changeset viewer.