Browse Source

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
master
Bruce Atherton 23 years ago
parent
commit
01d744455a
1 changed files with 12 additions and 8 deletions
  1. +12
    -8
      src/main/org/apache/tools/ant/DirectoryScanner.java

+ 12
- 8
src/main/org/apache/tools/ant/DirectoryScanner.java View File

@@ -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.
* <p>Returns the names of the files which were selected out and
* therefore not ultimately included.</p>
*
* @return the names of the files which were selected.
* <p>The names are relative to the base directory. This involves
* performing a slow scan if one has not already been completed.</p>
*
* @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.
* <p>Returns the names of the directories which were selected out and
* therefore not ultimately included.</p>
*
* <p>The names are relative to the base directory. This involves
* performing a slow scan if one has not already been completed.</p>
*
* @return the names of the directories which were selected.
* @return the names of the directories which were deselected.
*
* @see #slowScan
*/


Loading…
Cancel
Save