From d8a7e0bbb6e6c83e4defa456b03db39386638c34 Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Wed, 10 Oct 2007 06:06:39 +0000 Subject: [PATCH] typo git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@583364 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tools/ant/types/selectors/SelectorUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();