Browse Source

Just committed this one prematurely

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@397314 13f79535-47bb-0310-9956-ffa450edef68
master
Jacobus Martinus Kruithof 19 years ago
parent
commit
a4db08485a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/UpToDate.java

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

@@ -207,8 +207,8 @@ public class UpToDate extends Task implements Condition {
if (upToDate) { if (upToDate) {
Resource[] r = sourceResources.listResources(); Resource[] r = sourceResources.listResources();
upToDate = upToDate && upToDate = upToDate &&
(ResourceUtils.selectOutOfDateResources(this, r, getMapper(),
getProject(), null).length
(ResourceUtils.selectOutOfDateSources(this, r, getMapper(),
getProject()).length
== 0); == 0);
} }




Loading…
Cancel
Save