Ignore:
Timestamp:
2017-05-10T18:31:55+12:00 (7 years ago)
Author:
ak19
Message:

Changing the EventListeners list in GShell over to be CopyOnWriteArrayList because it is threadsafe, as is needed here, though the change comes at the expense of reduced efficiency. Also removed Imagemagick test debug statements in Gatherer.

File:
1 edited

Legend:

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

    r31644 r31670  
    16761676                }
    16771677                DebugStream.println("***** Running ImageMagickTest command: " + cmd_str);
    1678                 System.err.println("***** Running ImageMagickTest command: " + cmd_str);
    16791678               
    16801679                SafeProcess image_magick_process = new SafeProcess(command_parts);
     
    16841683                String output = image_magick_process.getStdOutput().toLowerCase();
    16851684                if (output.indexOf("version") != -1 || output.indexOf("imagemagick") != -1) {
    1686                 System.err.println("*** ImageMagickTest output: " + output);
    16871685                found = true;
    16881686                } // else found var remains false   
Note: See TracChangeset for help on using the changeset viewer.