Changeset 720 for AE/installer2/src/net/oni2/aeinstaller/backend/depot
- Timestamp:
- Mar 21, 2013, 12:33:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotConfig.java
r708 r720 3 3 import java.util.TreeSet; 4 4 5 import net.oni2. settingsmanager.Settings;5 import net.oni2.SettingsManager; 6 6 7 7 /** … … 88 88 */ 89 89 static String getDepotUrl() { 90 return Settings .getInstance().get("depot_url", "http://mods.oni2.net/");90 return SettingsManager.getInstance().get("depot_url", "http://mods.oni2.net/"); 91 91 } 92 92 … … 95 95 */ 96 96 static String getDepotApiUrl() { 97 return Settings .getInstance().get("depot_api_url",97 return SettingsManager.getInstance().get("depot_api_url", 98 98 "http://mods.oni2.net/?q=api/"); 99 99 }
Note:
See TracChangeset
for help on using the changeset viewer.