tmf: Use Apache Common Compress for importing from archive
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / internal / tmf / ui / project / wizards / importtrace / ZipFileSystemObject.java
index d0204f8cdafbaa87dec6ce6ef4d3d67c7cbd0d94..2f6822d31d7cc3c5c9a4b98e545ba2777cff84db 100644 (file)
@@ -15,8 +15,8 @@ package org.eclipse.tracecompass.internal.tmf.ui.project.wizards.importtrace;
 import java.io.File;
 import java.io.IOException;
 import java.net.URI;
-import java.util.zip.ZipEntry;
 
+import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
 import org.eclipse.core.runtime.IPath;
 import org.eclipse.core.runtime.Path;
 import org.eclipse.core.runtime.URIUtil;
@@ -26,10 +26,10 @@ import org.eclipse.core.runtime.URIUtil;
  */
 class ZipFileSystemObject implements IFileSystemObject {
 
-    private ZipEntry fFileSystemObject;
+    private ZipArchiveEntry fFileSystemObject;
     private String fArchivePath;
 
-    ZipFileSystemObject(ZipEntry fileSystemObject, String archivePath) {
+    ZipFileSystemObject(ZipArchiveEntry fileSystemObject, String archivePath) {
         fFileSystemObject = fileSystemObject;
         fArchivePath = archivePath;
     }
This page took 0.02415 seconds and 5 git commands to generate.