Changeset 615 for AE/installer2/src/net/oni2
- Timestamp:
- Jan 15, 2013, 1:49:04 AM (12 years ago)
- Location:
- AE/installer2/src/net/oni2/aeinstaller
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties
r612 r615 1 1 appname=AE Installer 2 2 appversion=0.7 62 appversion=0.77 3 3 4 4 invalidPath.title=Wrong directory -
AE/installer2/src/net/oni2/aeinstaller/backend/unpack/Unpacker.java
r605 r615 115 115 return; 116 116 case RUNNING: 117 ZipFile zf = null; 117 118 try { 118 119 int pathStart = 0; 119 120 String pathStartName = ""; 120 121 121 ZipFilezf = new ZipFile(zip);122 zf = new ZipFile(zip); 122 123 target.mkdirs(); 123 124 for (Enumeration<? extends ZipEntry> e = zf.entries(); e … … 166 167 // TODO Auto-generated catch block 167 168 e.printStackTrace(); 169 } finally { 170 try { 171 if (zf != null) 172 zf.close(); 173 } catch (IOException e) { 174 // TODO Auto-generated catch block 175 e.printStackTrace(); 176 } 168 177 } 169 178 break; -
AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
r612 r615 496 496 JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); 497 497 if (res == JOptionPane.NO_OPTION) { 498 saveLocalData(); 498 499 exit(); 499 500 } else {
Note:
See TracChangeset
for help on using the changeset viewer.