From 01d744455a8ae89ebb1bd5d5be47bc00505cb839 Mon Sep 17 00:00:00 2001 From: Bruce Atherton Date: Tue, 20 Aug 2002 21:53:13 +0000 Subject: [PATCH] Correct javadoc strings on methods that list deselected files and directories to indicate that they do in fact list files that have NOT been selected. Submitted by: JimWright@quick.cz (Jim Wright) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273238 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tools/ant/DirectoryScanner.java | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/main/org/apache/tools/ant/DirectoryScanner.java b/src/main/org/apache/tools/ant/DirectoryScanner.java index 16baf90cc..9ba2b321d 100644 --- a/src/main/org/apache/tools/ant/DirectoryScanner.java +++ b/src/main/org/apache/tools/ant/DirectoryScanner.java @@ -853,11 +853,13 @@ public class DirectoryScanner implements FileScanner, SelectorScanner { } /** - * Returns the names of the files which were selected. The names - * are relative to the base directory. This involves performing - * a slow scan if one has not already been completed. + *

Returns the names of the files which were selected out and + * therefore not ultimately included.

* - * @return the names of the files which were selected. + *

The names are relative to the base directory. This involves + * performing a slow scan if one has not already been completed.

+ * + * @return the names of the files which were deselected. * * @see #slowScan */ @@ -930,11 +932,13 @@ public class DirectoryScanner implements FileScanner, SelectorScanner { } /** - * Returns the names of the directories which were selected. The names - * are relative to the base directory. This involves performing a - * slow scan if one has not already been completed. + *

Returns the names of the directories which were selected out and + * therefore not ultimately included.

+ * + *

The names are relative to the base directory. This involves + * performing a slow scan if one has not already been completed.

* - * @return the names of the directories which were selected. + * @return the names of the directories which were deselected. * * @see #slowScan */