Ignore:
Timestamp:
Jan 19, 2013, 12:58:17 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.92b:\n- Using zipped Depot cache

Location:
AE/installer2/src/net/oni2/aeinstaller/backend/network
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/network/FileDownloader.java

    r619 r634  
    6161         *             If url could not be opened
    6262         */
    63         public FileDownloader(String url, String target) throws IOException {
     63        public FileDownloader(String url, File target) throws IOException {
    6464                this.url = new URL(url);
    65                 this.target = new File(target);
     65                this.target = target;
    6666
    6767                URLConnection connection = this.url.openConnection();
     
    130130                                target.delete();
    131131                }
     132        }
     133
     134        /**
     135         * @return current state
     136         */
     137        public EState getState() {
     138                return state;
    132139        }
    133140
Note: See TracChangeset for help on using the changeset viewer.