This commit is contained in:
Stephane Nicoll
2015-07-24 07:19:53 +02:00
parent d6e914be87
commit 42e230192f
50 changed files with 100 additions and 104 deletions

View File

@@ -32,6 +32,6 @@ public interface JavaAgentDetector {
* @param url The url to examine
* @return if the URL points to a Java agent
*/
public boolean isJavaAgentJar(URL url);
boolean isJavaAgentJar(URL url);
}

View File

@@ -104,7 +104,7 @@ public abstract class Archive {
/**
* Represents a single entry in the archive.
*/
public static interface Entry {
public interface Entry {
/**
* Returns {@code true} if the entry represents a directory.
@@ -123,7 +123,7 @@ public abstract class Archive {
/**
* Strategy interface to filter {@link Entry Entries}.
*/
public static interface EntryFilter {
public interface EntryFilter {
/**
* Apply the jar entry filter.
@@ -137,7 +137,7 @@ public abstract class Archive {
/**
* Strategy interface to filter or rename {@link Entry Entries}.
*/
public static interface EntryRenameFilter {
public interface EntryRenameFilter {
/**
* Apply the jar entry filter.