project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Downloader/DownloadAsyncTask.java
changeset 6842 2e6391f33204
parent 6751 7c75941b499b
child 7584 7831c84cc644
equal deleted inserted replaced
6840:c61f842621b8 6842:2e6391f33204
   105 			try{
   105 			try{
   106 				input = new ZipInputStream(conn.getInputStream());
   106 				input = new ZipInputStream(conn.getInputStream());
   107 				entry = input.getNextEntry();	
   107 				entry = input.getNextEntry();	
   108 			}catch(IOException e){
   108 			}catch(IOException e){
   109 				e.printStackTrace();
   109 				e.printStackTrace();
   110 				if(conn != null) conn.disconnect();
   110 				conn.disconnect();
   111 				return EXIT_CONNERROR;
   111 				return EXIT_CONNERROR;
   112 			}
   112 			}
   113 
   113 
   114 
   114 
   115 
   115