Changeset 852 for java/installer2/src/net/oni2/aeinstaller/backend
- Timestamp:
- May 3, 2013, 2:25:21 PM (12 years ago)
- Location:
- java/installer2/src/net/oni2/aeinstaller/backend
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/backend/Paths.java
r779 r852 4 4 import java.io.UnsupportedEncodingException; 5 5 import java.net.URLDecoder; 6 7 import net.oni2.SettingsManager;8 6 9 7 /** … … 27 25 28 26 /** 27 * @return Proxy settings filename of AEI 28 */ 29 public static File getProxySettingsFilename() { 30 return new File(getPrefsPath(), "AEI-ProxySettings.xml"); 31 } 32 33 /** 29 34 * Get the Jar path 30 35 * … … 32 37 */ 33 38 public static File getInstallerPath() { 34 if ( SettingsManager.isDebug() || SettingsManager.getUseWorkingDir()) {39 if (RuntimeOptions.isDebug() || RuntimeOptions.getUseWorkingDir()) { 35 40 String wd = System.getProperty("user.dir"); 36 41 return new File(wd);
Note:
See TracChangeset
for help on using the changeset viewer.