Skip to content

Commit

Permalink
Tidies up PR 723
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Oct 31, 2022
1 parent 13f84a8 commit dda7812
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<a name="3.x"/>

## [Unreleased]
### Fixed
- Fix issue when the project path contains whitespaces. ([Issue 723](https://github.com/jqno/equalsverifier/issues/723); thanks Kobee1203!)

## [3.10.1] - 2022-07-26
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ private static List<File> getDirs(String packageName) {
}

private static String getResourcePath(URL r) {
return rethrow(() -> r.toURI().getPath(), e -> "Could not resolve resource path: " + e.getMessage());
return rethrow(
() -> r.toURI().getPath(),
e -> "Could not resolve resource path: " + e.getMessage()
);
}

private static List<Class<?>> getClassesInDir(
Expand Down

0 comments on commit dda7812

Please sign in to comment.