Browse Source

mark some static methods as non-final, as it is implicit from being static

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@546132 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 18 years ago
parent
commit
dc2d06decb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/Jar.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/Jar.java View File

@@ -889,7 +889,7 @@ public class Jar extends Zip {
* @return the matching entry, or null if the file is not found
* @since Ant 1.6.2
*/
protected static final String findJarName(String fileName,
protected static String findJarName(String fileName,
String[] classpath) {
if (classpath == null) {
return (new File(fileName)).getName();
@@ -936,7 +936,7 @@ public class Jar extends Zip {
* @since Ant 1.7
* @throws IOException on error
*/
protected static final void grabFilesAndDirs(String file, List dirs,
protected static void grabFilesAndDirs(String file, List dirs,
List files)
throws IOException {
org.apache.tools.zip.ZipFile zf = null;


Loading…
Cancel
Save