summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java')
-rw-r--r--branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java b/branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java
index 0a1dfa75e9..78434d4c0d 100644
--- a/branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java
+++ b/branches/sca-java-1.x/modules/domain-search/src/main/java/org/apache/tuscany/sca/domain/search/impl/WrappedFileContent.java
@@ -25,7 +25,6 @@ import java.net.JarURLConnection;
import java.net.URL;
/**
- *
* @version $Rev$ $Date$
*/
public class WrappedFileContent implements FileContent {
@@ -37,49 +36,9 @@ public class WrappedFileContent implements FileContent {
if (protocol.equals("jar")) {
JarURLConnection jarConn = (JarURLConnection)url.openConnection();
- // Enumeration<JarEntry> entries = jarConn.getJarFile().entries();
String file = url.getFile();
file = file.substring(file.lastIndexOf('!') + 1);
- // if (file.charAt(file.length() - 1) != '/') {
- //
- // int beginIndex;
- //
- // if (file.charAt(0) == '/') {
- // beginIndex = 1;
- //
- // } else {
- // beginIndex = 0;
- // }
- //
- // file = file.substring(beginIndex);
- //
- // while (entries.hasMoreElements()) {
- // String actualFile = entries.nextElement().getName();
- //
- // if (actualFile.charAt(0) == '/') {
- // beginIndex = 1;
- //
- // } else {
- // beginIndex = 0;
- // }
- //
- // if (actualFile.length() - beginIndex == file.length() + 1 &&
- // actualFile.charAt(actualFile.length() - 1) == '/') {
- //
- // if (actualFile.startsWith(file, beginIndex)) {
- // file = actualFile;
- //
- // break;
- //
- // }
- //
- // }
- //
- // }
- //
- // }
-
this.fileContent = ZipFileContent.createZipFileContent(jarConn.getJarFile(), file);
} else if (protocol.equals("file")) {