git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@722942 13f79535-47bb-0310-9956-ffa450edef68master
@@ -159,6 +159,7 @@ Kevin Greiner | |||||
Kevin Jackson | Kevin Jackson | ||||
Kevin Ross | Kevin Ross | ||||
Kevin Z Grey | Kevin Z Grey | ||||
Kim Hansen | |||||
Kirk Wylie | Kirk Wylie | ||||
Kyle Adams | Kyle Adams | ||||
Larry Shatzer | Larry Shatzer | ||||
@@ -300,6 +300,11 @@ Fixed bugs: | |||||
using TraX) before falling back to Ant's own classpath. | using TraX) before falling back to Ant's own classpath. | ||||
Bugzilla Report 46172. | Bugzilla Report 46172. | ||||
* <dependset> complained about files being modified in the future if | |||||
they had been just very recently (within Ant's assumed granularity | |||||
of the file system). | |||||
Bugzilla Report 43665. | |||||
Other changes: | Other changes: | ||||
-------------- | -------------- | ||||
@@ -667,6 +667,10 @@ | |||||
<middle>Z</middle> | <middle>Z</middle> | ||||
<last>Grey</last> | <last>Grey</last> | ||||
</name> | </name> | ||||
<name> | |||||
<first>Kim</first> | |||||
<last>Hansen</last> | |||||
</name> | |||||
<name> | <name> | ||||
<first>Kirk</first> | <first>Kirk</first> | ||||
<last>Wylie</last> | <last>Wylie</last> | ||||
@@ -197,6 +197,9 @@ public class DependSet extends MatchingTask { | |||||
= new org.apache.tools.ant.types.resources.selectors.Date(); | = new org.apache.tools.ant.types.resources.selectors.Date(); | ||||
datesel.setMillis(System.currentTimeMillis()); | datesel.setMillis(System.currentTimeMillis()); | ||||
datesel.setWhen(TimeComparison.AFTER); | datesel.setWhen(TimeComparison.AFTER); | ||||
// don't whine because a file has changed during the last | |||||
// second (or whathever our current granularity may be) | |||||
datesel.setGranularity(0); | |||||
logFuture(targets, datesel); | logFuture(targets, datesel); | ||||
int neTargets = new NonExistent(targets).size(); | int neTargets = new NonExistent(targets).size(); | ||||