This commit is contained in:
Phillip Webb 2014-06-20 09:36:01 -07:00
parent a3ceaf63e2
commit 20fb55ea47
9 changed files with 12 additions and 0 deletions

View File

@ -44,4 +44,5 @@ public class JarLauncher extends ExecutableArchiveLauncher {
public static void main(String[] args) {
new JarLauncher().launch(args);
}
}

View File

@ -32,4 +32,5 @@ public interface JavaAgentDetector {
* @param url The url to examine
*/
public boolean isJavaAgentJar(URL url);
}

View File

@ -221,4 +221,5 @@ public class LaunchedURLClassLoader extends URLClassLoader {
// Ignore
}
}
}

View File

@ -79,4 +79,5 @@ public class WarLauncher extends ExecutableArchiveLauncher {
public static void main(String[] args) {
new WarLauncher().launch(args);
}
}

View File

@ -65,5 +65,7 @@ public interface RandomAccessData {
* Obtain access to the underlying resource on each read, releasing it when done.
*/
PER_READ
}
}

View File

@ -221,6 +221,7 @@ public class RandomAccessDataFile implements RandomAccessData {
this.position += amount;
return amount;
}
}
/**
@ -277,5 +278,7 @@ public class RandomAccessDataFile implements RandomAccessData {
throw new IOException(ex);
}
}
}
}

View File

@ -76,4 +76,5 @@ class Bytes {
}
return value;
}
}

View File

@ -119,4 +119,5 @@ class CentralDirectoryEndRecord {
public int getNumberOfRecords() {
return (int) Bytes.littleEndianValue(this.block, this.offset + 10, 2);
}
}

View File

@ -478,4 +478,5 @@ public class JarFile extends java.util.jar.JarFile implements Iterable<JarEntryD
*/
SYSTEM_INDEPENDENT
}
}