Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Coles committed Oct 7, 2022
1 parent 3f8c230 commit 0c8e2e2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ public Optional<Reader> locate(Collection<String> classes, String fileName) {
.map(ClassName::fromString)
.map(ClassName::getPackage)
.distinct()
.peek(s -> System.out.println("Classname = " + s))
.map(c -> toFileName(c, fileName))
.peek(s -> System.out.println("Filename = " + s))
.map(file -> root.resolve(file))
.filter(Files::exists)
.filter(Files::isRegularFile)
Expand Down

0 comments on commit 0c8e2e2

Please sign in to comment.