Browse Source

there was still a little bone :)

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

+ 1
- 1
src/main/org/apache/tools/ant/util/FileUtils.java View File

@@ -1188,7 +1188,7 @@ public class FileUtils {

// ensure that l ends with a /
// so we never think /foo was a parent directory of /foobar
if (!l.endsWith("/")) {
if (!l.endsWith(File.separator)) {
l += File.separator;
}



Loading…
Cancel
Save