Skip to content

Commit

Permalink
Correct more silly hand-Java errors
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Nov 23, 2023
1 parent 97fef97 commit 462b4f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/dead-link-issue.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private String getOwningPage(DeadLink link) {
private List<DeadLink> readTestOutputFile() throws IOException {
Path filePath = FileSystems.getDefault()
.getPath(OUTPUT_PATH);
if (File.exists(filePath)) {
if (Files.exists(filePath)) {
return Files.lines(filePath)
.map(line -> {
try {
Expand Down

0 comments on commit 462b4f0

Please sign in to comment.