Changeset 34544 for main/trunk


Ignore:
Timestamp:
2020-11-19T13:04:10+13:00 (3 years ago)
Author:
ak19
Message:

The UTF-8 locale warning when starting GLI just after a successful GS install is thought to be alarming. So switched off. It will not be triggered to appear at any other juncture at this point, however.

File:
1 edited

Legend:

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

    r34113 r34544  
    576576            }
    577577
    578             // Check that the local can support multiple filename encodings
     578            // Check that the locale can support multiple filename encodings
    579579            //System.err.println("#### Java identifies current Locale as (file.encoding): "
    580580            //  + System.getProperty("file.encoding"));
     
    585585                // This has the effect that non-UTF8 encoded filenames on a system set to a
    586586                // UTF-8 locale are not 'seen' by Java (if they contain non-ASCII characters).
    587                 multipleFilenameEncodingsNotSupported();       
     587
     588                    // This message popping up first thing after a successful GS install is thought
     589                    // to be unnecessarily alarming. Turning off.
     590                //multipleFilenameEncodingsNotSupported();
    588591                FilenameEncoding.MULTIPLE_FILENAME_ENCODINGS_SUPPORTED = false;
    589592                FilenameEncoding.URL_FILE_SEPARATOR = File.separator;
Note: See TracChangeset for help on using the changeset viewer.