Reformat code using Eclipse Mars
This commit is contained in:
@@ -325,7 +325,8 @@ public class JarFile extends java.util.jar.JarFile implements Iterable<JarEntryD
|
||||
* @return a {@link JarFile} for the entry
|
||||
* @throws IOException if the nested jar file cannot be read
|
||||
*/
|
||||
public synchronized JarFile getNestedJarFile(final ZipEntry entry) throws IOException {
|
||||
public synchronized JarFile getNestedJarFile(final ZipEntry entry)
|
||||
throws IOException {
|
||||
return getNestedJarFile(getContainedEntry(entry).getSource());
|
||||
}
|
||||
|
||||
|
||||
@@ -90,7 +90,8 @@ public class ExecutableArchiveLauncherTests {
|
||||
assertArrayEquals(urls, ((URLClassLoader) classLoader).getURLs());
|
||||
}
|
||||
|
||||
private void doWithTccl(ClassLoader classLoader, Callable<?> action) throws Exception {
|
||||
private void doWithTccl(ClassLoader classLoader, Callable<?> action)
|
||||
throws Exception {
|
||||
ClassLoader old = Thread.currentThread().getContextClassLoader();
|
||||
try {
|
||||
Thread.currentThread().setContextClassLoader(classLoader);
|
||||
@@ -101,8 +102,8 @@ public class ExecutableArchiveLauncherTests {
|
||||
}
|
||||
}
|
||||
|
||||
private static final class UnitTestExecutableArchiveLauncher extends
|
||||
ExecutableArchiveLauncher {
|
||||
private static final class UnitTestExecutableArchiveLauncher
|
||||
extends ExecutableArchiveLauncher {
|
||||
|
||||
UnitTestExecutableArchiveLauncher(JavaAgentDetector javaAgentDetector) {
|
||||
super(javaAgentDetector);
|
||||
|
||||
Reference in New Issue
Block a user