Changeset 7591


Ignore:
Timestamp:
2004-06-14T15:03:54+12:00 (20 years ago)
Author:
mdewsnip
Message:

Multi-line statements are now read in with newline characters added.

File:
1 edited

Legend:

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

    r7340 r7591  
    8383                command = command.substring(0, command.lastIndexOf("\\"));
    8484                String next_line = br.readLine();
    85                 if(next_line != null) {
    86                 command = command + next_line;
     85                if (next_line != null) {
     86                command = command + "\n" + next_line;
    8787                }
    8888                next_line = null;
Note: See TracChangeset for help on using the changeset viewer.