Changeset 6638


Ignore:
Timestamp:
2004-01-28T14:46:12+13:00 (20 years ago)
Author:
jmt12
Message:

Reinstated emtpy title error warning supressions, as this is the easiest way to stop the warning message exit of hanging deathiness.

File:
1 edited

Legend:

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

    r6622 r6638  
    4848    static public boolean titleClashes(String title, File current_config_file) {
    4949    // An empty collection title never clashes with anything. I may look ugly in the final collection but there is nothing wrong with having no title for a particular language.
    50     //if(title == null || title.length() == 0) {
    51     //    return false;
    52     //}
     50    if(title == null || title.length() == 0) {
     51        return false;
     52    }
    5353    File collection_directory = new File(Utility.getCollectionDir(Gatherer.config.gsdl_path));
    5454    File children[] = collection_directory.listFiles();
Note: See TracChangeset for help on using the changeset viewer.