Changeset 778
- Timestamp:
- Apr 3, 2013, 12:39:07 AM (12 years ago)
- Location:
- java/installer2/src/net/oni2/aeinstaller
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/AEInstaller2.java
r776 r778 185 185 System.out.println(basicBundle.getString("appname") 186 186 + basicBundle.getString("appversion")); 187 System.out.println("JarPath: " + Paths.get InstallerPath());187 System.out.println("JarPath: " + Paths.getJarPath()); 188 188 System.out.println("PrefsPath: " + Paths.getPrefsPath()); 189 189 System.out.println("DataPath: " + Paths.getModsPath()); -
java/installer2/src/net/oni2/aeinstaller/backend/Paths.java
r776 r778 36 36 return new File(wd); 37 37 } else { 38 return getJarPath() ;38 return getJarPath().getParentFile(); 39 39 } 40 40 } … … 52 52 e.printStackTrace(); 53 53 } 54 return new File(decodedPath).getParentFile() .getParentFile();54 return new File(decodedPath).getParentFile(); 55 55 } 56 56
Note:
See TracChangeset
for help on using the changeset viewer.