diff --git a/src/main/org/apache/tools/ant/types/selectors/SelectorUtils.java b/src/main/org/apache/tools/ant/types/selectors/SelectorUtils.java index 05c516317..1fd7378f6 100644 --- a/src/main/org/apache/tools/ant/types/selectors/SelectorUtils.java +++ b/src/main/org/apache/tools/ant/types/selectors/SelectorUtils.java @@ -618,7 +618,7 @@ public final class SelectorUtils { long granularity) { long sourceLastModified = src.getLastModified(); // Check if source exists - use sourceLastModified for file resources - // as it quicker that checking exists() again, however string reources + // as it is quicker than checking exists() again, however string resources // have a last modified time of 0 boolean sourceExists = (src instanceof FileResource) ? sourceLastModified != 0L : src.isExists();