Ignore:
Timestamp:
2005-06-03T15:50:07+12:00 (19 years ago)
Author:
mdewsnip
Message:

Now all JAR-file related, base.getResource* stuff is in the JarTools class.

File:
1 edited

Legend:

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

    r10011 r10013  
    131131
    132132    // Try in the JAR/classes directory first
    133     URL help_folder_url = Utility.base.getResource("/" + help_folder);  // !!
     133    URL help_folder_url = JarTools.getResource("/" + help_folder);
    134134    if (help_folder_url != null) {
    135135        return help_folder;
     
    320320
    321321        if (name != null && !name.equals(NULL_STRING)) {
    322         url = Utility.base.getResource("/" + help_file);
     322        url = JarTools.getResource("/" + help_file);
    323323        if (url == null) {
    324324            File file = new File(Utility.BASE_DIR + help_file);
Note: See TracChangeset for help on using the changeset viewer.