Ignore:
Timestamp:
Mar 21, 2013, 10:39:55 AM (12 years ago)
Author:
alloc
Message:

AEI2: Refactorings for breaking out independent features into libraries

Location:
AE/installer2/src/net/oni2/aeinstaller/backend/depot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotConfig.java

    r648 r708  
    33import java.util.TreeSet;
    44
    5 import net.oni2.aeinstaller.backend.Settings;
     5import net.oni2.settingsmanager.Settings;
    66
    77/**
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotManager.java

    r672 r708  
    1717
    1818import net.oni2.aeinstaller.backend.Paths;
    19 import net.oni2.aeinstaller.backend.Settings;
    2019import net.oni2.aeinstaller.backend.depot.model.File;
    2120import net.oni2.aeinstaller.backend.depot.model.Node;
     
    280279                                                result.add(nm);
    281280                                        } catch (NumberFormatException e) {
    282                                                 System.err.println("Node " + nm.getNid() + " does not have a package number!!!");
     281                                                System.err.println("Node " + nm.getNid()
     282                                                                + " does not have a package number!!!");
    283283                                        }
    284284                                }
     
    349349                try {
    350350                        FileOutputStream fos = new FileOutputStream(
    351                                         Settings.getDepotCacheFilename());
     351                                        Paths.getDepotCacheFilename());
    352352                        XStream xs = getXStream();
    353353                        xs.toXML(this, fos);
     
    363363                try {
    364364                        FileInputStream fis = new FileInputStream(
    365                                         Settings.getDepotCacheFilename());
     365                                        Paths.getDepotCacheFilename());
    366366                        XStream xs = getXStream();
    367367                        Object obj = xs.fromXML(fis);
Note: See TracChangeset for help on using the changeset viewer.