Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
howlger authored and laeubi committed Apr 16, 2024
1 parent 14ea4d6 commit d7409fb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ static ResolvedArtifactKey bundle(String id, String version, File location) {
static ResolvedArtifactKey of(String type, String id, String version, File location) {
Objects.requireNonNull(location);
if (!location.exists()) {
throw new IllegalArgumentException("location " + location.getAbsolutePath() + " does not exits!");
throw new IllegalArgumentException("location " + location.getAbsolutePath() + " does not exist!");
}
return new ResolvedArtifactKey() {

Expand Down

0 comments on commit d7409fb

Please sign in to comment.