Ignore:
Timestamp:
2004-11-25T15:04:45+13:00 (20 years ago)
Author:
mdewsnip
Message:

Fixed my changes from yesterday to store plugins.dat, classifiers.dat, and recycle bin information in the user-specific GLI folder.

File:
1 edited

Legend:

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

    r8650 r8670  
    105105
    106106    DebugStream.println("deleting plugins.dat");
    107     File plugin_file = new File(Utility.getGLIUserFolder() + "plugins.dat");
     107    File plugin_file = new File(Utility.getGLIUserFolder(), "plugins.dat");
    108108    if (plugin_file.exists()) {
    109109        return Utility.delete(plugin_file);
     
    332332    private void savePlugins() {
    333333    try {
    334         FileOutputStream file = new FileOutputStream(Utility.getGLIUserFolder() + "plugins.dat");
     334        File plugins_dat_file = new File(Utility.getGLIUserFolder(), "plugins.dat");
     335        FileOutputStream file = new FileOutputStream(plugins_dat_file);
    335336        ObjectOutputStream out = new ObjectOutputStream(file);
    336337        out.writeObject(library);
     
    471472    private void loadPlugins() {
    472473    // Attempt to restore the cached file.
     474    File plugins_dat_file = new File(Utility.getGLIUserFolder(), "plugins.dat");
    473475    try {
    474         FileInputStream file = new FileInputStream(Utility.getGLIUserFolder() + "plugins.dat");
     476        FileInputStream file = new FileInputStream(plugins_dat_file);
    475477        ObjectInputStream input = new ObjectInputStream(file);
    476478        library = (ArrayList) input.readObject();
    477479    }
    478480    catch (Exception error) {
    479         DebugStream.println("Unable to open "+ Utility.getGLIUserFolder() + "plugins.dat");
     481        DebugStream.println("Unable to open " + plugins_dat_file);
    480482    }
    481483
Note: See TracChangeset for help on using the changeset viewer.