Ignore:
Timestamp:
Jan 15, 2013, 1:49:04 AM (12 years ago)
Author:
alloc
Message:

AEI2:

  • Save Depot cache when exiting AEI instead of letting it initialize the edition
  • Close downloaded zip-files so they get deleted after unpacking
File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/unpack/Unpacker.java

    r605 r615  
    115115                                        return;
    116116                                case RUNNING:
     117                                        ZipFile zf = null;
    117118                                        try {
    118119                                                int pathStart = 0;
    119120                                                String pathStartName = "";
    120121
    121                                                 ZipFile zf = new ZipFile(zip);
     122                                                zf = new ZipFile(zip);
    122123                                                target.mkdirs();
    123124                                                for (Enumeration<? extends ZipEntry> e = zf.entries(); e
     
    166167                                                // TODO Auto-generated catch block
    167168                                                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                                                }
    168177                                        }
    169178                                        break;
Note: See TracChangeset for help on using the changeset viewer.