Ignore:
Timestamp:
Apr 12, 2013, 6:33:10 PM (12 years ago)
Author:
alloc
Message:

AEI2.02:

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/backend/packages/PackageManager.java

    r804 r807  
    215215
    216216        /**
     217         * @return Currently installed mods
     218         */
     219        public TreeSet<Package> getInstalledMods() {
     220                TreeSet<Package> res = new TreeSet<Package>();
     221                for (int n : Installer.getInstalledMods()) {
     222                        res.add(getPackageByNumber(n));
     223                }
     224                return res;
     225        }
     226
     227        /**
    217228         * @return Collection of tools valid on this platform and not core
    218229         */
Note: See TracChangeset for help on using the changeset viewer.