Browse Source

Workaround for Jikes compilation problem

Submitted by:	Paul Philion <philion@acmerocket.com>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267948 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 25 years ago
parent
commit
dc76115024
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/Javadoc.java

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

@@ -890,12 +890,12 @@ public class Javadoc extends Task {
}
String[] files = dir.list(new FilenameFilter () {
public boolean accept(File dir, String name) {
public boolean accept(File dir1, String name) {
if (name.endsWith(".java")) {
foundJavaFile = true;
return false;
}
File d = new File(dir, name);
File d = new File(dir1, name);
if (d.isDirectory()) {
return true;
}


Loading…
Cancel
Save