Changeset 9061


Ignore:
Timestamp:
2005-02-16T13:23:57+13:00 (19 years ago)
Author:
mdewsnip
Message:

Now ensures that a non-standard collect directory specification ends with File.separator.

File:
1 edited

Legend:

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

    r9058 r9061  
    462462    {
    463463    non_standard_collect_directory_path = collect_directory_path;
     464    if (!non_standard_collect_directory_path.endsWith(File.separator)) {
     465        non_standard_collect_directory_path = non_standard_collect_directory_path + File.separator;
     466    }
    464467    }
    465468
Note: See TracChangeset for help on using the changeset viewer.