Skip to content

Commit

Permalink
Fixed visibility of Scanner.Visitor.
Browse files Browse the repository at this point in the history
Must be package private because it uses TimeNSize
in method signatures, that is also package private.

Signed-off-by: Simone Bordet <[email protected]>
  • Loading branch information
sbordet committed Dec 19, 2019
1 parent e4f1106 commit 26b0445
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public String toString()
* 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;
Expand Down

0 comments on commit 26b0445

Please sign in to comment.