Browse Source

Dont use public specifier when it is redundent (and thus issues warnings).

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272209 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
d0d3f0d2b0
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      proposal/myrmidon/src/java/org/apache/myrmidon/framework/file/FileList.java
  2. +1
    -1
      proposal/myrmidon/src/java/org/apache/myrmidon/interfaces/extensions/ExtensionManager.java

+ 1
- 1
proposal/myrmidon/src/java/org/apache/myrmidon/framework/file/FileList.java View File

@@ -26,6 +26,6 @@ public interface FileList
* @param context the context to use to evaluate the list. * @param context the context to use to evaluate the list.
* @return The names of the files in this list. All names are absolute paths. * @return The names of the files in this list. All names are absolute paths.
*/ */
public String[] listFiles( TaskContext context )
String[] listFiles( TaskContext context )
throws TaskException; throws TaskException;
} }

+ 1
- 1
proposal/myrmidon/src/java/org/apache/myrmidon/interfaces/extensions/ExtensionManager.java View File

@@ -27,5 +27,5 @@ public interface ExtensionManager
* @param extension the extension to locate an optional package * @param extension the extension to locate an optional package
* @return the optional package, or null if not found. * @return the optional package, or null if not found.
*/ */
public OptionalPackage getOptionalPackage( Extension extension );
OptionalPackage getOptionalPackage( Extension extension );
} }

Loading…
Cancel
Save