Skip to content

Commit

Permalink
devonfw#13: reformatted comment
Browse files Browse the repository at this point in the history
  • Loading branch information
MattesMrzik committed Jan 8, 2024
1 parent 2138357 commit 0b23360
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ private void deleteLinkIfExists(Path path) throws IOException {
return;
}
}
exists = exists || Files.exists(path); // "||" since broken junctions are not detected by
// Files.exists(brokenJunction)
// "||" since broken junctions are not detected by Files.exists(brokenJunction)
exists = exists || Files.exists(path);
boolean isSymlink = exists && Files.isSymbolicLink(path);

assert !(isSymlink && isJunction);
Expand Down

0 comments on commit 0b23360

Please sign in to comment.