Fixed visibility of Scanner.Visitor.

Must be package private because it uses TimeNSize
in method signatures, that is also package private.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2019-12-19 11:53:20 +01:00
parent e4f1106f09
commit 26b0445a9e
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class Scanner extends AbstractLifeCycle
* A FileVisitor for walking a subtree of paths. The Scanner uses
* this to examine the dirs and files it has been asked to scan.
*/
public class Visitor implements FileVisitor<Path>
class Visitor implements FileVisitor<Path>
{
Map<String, TimeNSize> scanInfoMap;
IncludeExcludeSet<PathMatcher,Path> rootIncludesExcludes;