Changeset 615 for AE/installer2/src/net/oni2/aeinstaller/backend/unpack
- Timestamp:
- Jan 15, 2013, 1:49:04 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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;
Note:
See TracChangeset
for help on using the changeset viewer.