Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 187580 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/update/internal/core/FeaturePackagedContentProvider.java (-1 / +5 lines)
Lines 253-259 Link Here
253
						monitor.showCopyDetails(false);
253
						monitor.showCopyDetails(false);
254
					}
254
					}
255
					//unpacking the jar will strip the ".pack.gz" and leave us back with the original filename
255
					//unpacking the jar will strip the ".pack.gz" and leave us back with the original filename
256
					processor.processJar(packedFile);
256
					try {
257
						processor.processJar(packedFile);
258
					} catch (Throwable e) {
259
						//something is wrong unpacking
260
					}
257
	
261
	
258
					if(tempFile.exists() && tempFile.length() > 0){
262
					if(tempFile.exists() && tempFile.length() > 0){
259
						success = true;
263
						success = true;

Return to bug 187580