Commit 20fb55ea authored by Phillip Webb's avatar Phillip Webb

Polish

parent a3ceaf63
...@@ -44,4 +44,5 @@ public class JarLauncher extends ExecutableArchiveLauncher { ...@@ -44,4 +44,5 @@ public class JarLauncher extends ExecutableArchiveLauncher {
public static void main(String[] args) { public static void main(String[] args) {
new JarLauncher().launch(args); new JarLauncher().launch(args);
} }
} }
...@@ -32,4 +32,5 @@ public interface JavaAgentDetector { ...@@ -32,4 +32,5 @@ public interface JavaAgentDetector {
* @param url The url to examine * @param url The url to examine
*/ */
public boolean isJavaAgentJar(URL url); public boolean isJavaAgentJar(URL url);
} }
...@@ -221,4 +221,5 @@ public class LaunchedURLClassLoader extends URLClassLoader { ...@@ -221,4 +221,5 @@ public class LaunchedURLClassLoader extends URLClassLoader {
// Ignore // Ignore
} }
} }
} }
...@@ -79,4 +79,5 @@ public class WarLauncher extends ExecutableArchiveLauncher { ...@@ -79,4 +79,5 @@ public class WarLauncher extends ExecutableArchiveLauncher {
public static void main(String[] args) { public static void main(String[] args) {
new WarLauncher().launch(args); new WarLauncher().launch(args);
} }
} }
...@@ -65,5 +65,7 @@ public interface RandomAccessData { ...@@ -65,5 +65,7 @@ public interface RandomAccessData {
* Obtain access to the underlying resource on each read, releasing it when done. * Obtain access to the underlying resource on each read, releasing it when done.
*/ */
PER_READ PER_READ
} }
} }
...@@ -221,6 +221,7 @@ public class RandomAccessDataFile implements RandomAccessData { ...@@ -221,6 +221,7 @@ public class RandomAccessDataFile implements RandomAccessData {
this.position += amount; this.position += amount;
return amount; return amount;
} }
} }
/** /**
...@@ -277,5 +278,7 @@ public class RandomAccessDataFile implements RandomAccessData { ...@@ -277,5 +278,7 @@ public class RandomAccessDataFile implements RandomAccessData {
throw new IOException(ex); throw new IOException(ex);
} }
} }
} }
} }
...@@ -76,4 +76,5 @@ class Bytes { ...@@ -76,4 +76,5 @@ class Bytes {
} }
return value; return value;
} }
} }
...@@ -119,4 +119,5 @@ class CentralDirectoryEndRecord { ...@@ -119,4 +119,5 @@ class CentralDirectoryEndRecord {
public int getNumberOfRecords() { public int getNumberOfRecords() {
return (int) Bytes.littleEndianValue(this.block, this.offset + 10, 2); return (int) Bytes.littleEndianValue(this.block, this.offset + 10, 2);
} }
} }
...@@ -478,4 +478,5 @@ public class JarFile extends java.util.jar.JarFile implements Iterable<JarEntryD ...@@ -478,4 +478,5 @@ public class JarFile extends java.util.jar.JarFile implements Iterable<JarEntryD
*/ */
SYSTEM_INDEPENDENT SYSTEM_INDEPENDENT
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment