Skip to content

Commit

Permalink
Modernize use of NIO API
Browse files Browse the repository at this point in the history
  • Loading branch information
charphi committed Jan 14, 2025
1 parent 8c1c1b7 commit 41ebb61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Modernize use of NIO API

## [0.9.2] - 2024-08-30

- Fix blank line at the end of file [#299](https://github.com/nbbrd/heylogs/issues/299)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected boolean isRootProject() {
}
File parentDir = projectBaseDir.getParentFile();
if (parentDir != null) {
File parentPom = new File(parentDir, "pom.xml");
File parentPom = parentDir.toPath().resolve("pom.xml").toFile();
return !parentPom.exists();
}
return true;
Expand Down

0 comments on commit 41ebb61

Please sign in to comment.