Browse Source

mistake found ... oops ... corrected

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275093 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 22 years ago
parent
commit
4177bdb64e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java View File

@@ -291,7 +291,7 @@ public class FTP
} else {
String name = vpath + file.getName();
if (!isFollowSymlinks() && file.isSymbolicLink()) {
dirsExcluded.addElement(name);
filesExcluded.addElement(name);
} else if (isFunctioningAsFile(ftp, dir, file)) {
if (isIncluded(name)) {
if (!isExcluded(name)) {


Loading…
Cancel
Save