Skip to content

Commit

Permalink
Fix missing space in error message (#2983)
Browse files Browse the repository at this point in the history
Fix missing space in error message
  • Loading branch information
ash211 authored Jan 6, 2025
1 parent a5b29e1 commit e4d633d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private void ensureLockfileContains(String expected) {
throw new ExceptionWithSuggestion(
"baseline-class-uniqueness detected multiple jars containing identically named classes."
+ " Please resolve these problems, or run `./gradlew checkClassUniqueness --fix`"
+ "to accept them:\n\n " + expected,
+ " to accept them:\n\n " + expected,
"./gradlew checkClassUniqueness --fix");
}

Expand Down

0 comments on commit e4d633d

Please sign in to comment.