From 323d7b6161cdaacec4377480d44f6ab892dba944 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Sat, 8 Dec 2001 05:38:01 +0000 Subject: [PATCH] little clarification in the code git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270092 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/util/SourceFileScanner.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/org/apache/tools/ant/util/SourceFileScanner.java b/src/main/org/apache/tools/ant/util/SourceFileScanner.java index 9a21f91ad..8b9fe0bda 100644 --- a/src/main/org/apache/tools/ant/util/SourceFileScanner.java +++ b/src/main/org/apache/tools/ant/util/SourceFileScanner.java @@ -106,6 +106,9 @@ public class SourceFileScanner { If we're on Windows, we have to munge the time up to 2 secs to be able to check file modification times. (Windows has a max resolution of two secs for modification times) + Actually this is a feature of the FAT file system, NTFS does + not have it, so if we could reliably passively test for an NTFS + file systems we could turn this off... */ if (Os.isFamily("windows")) { now += 2000;