Skip to content

Commit

Permalink
Fixed message: Removed duplicate space (#263)
Browse files Browse the repository at this point in the history
The message contained 2 spaces between `to` and `via`, but should have only one.
  • Loading branch information
Karsten Thoms authored Apr 19, 2022
1 parent 0b8fd57 commit d510ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/codehaus/mojo/exec/ExecJavaMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ private void terminateThreads( ThreadGroup threadGroup )
}
if ( !uncooperativeThreads.isEmpty() )
{
getLog().warn( "NOTE: " + uncooperativeThreads.size() + " thread(s) did not finish despite being asked to "
getLog().warn( "NOTE: " + uncooperativeThreads.size() + " thread(s) did not finish despite being asked to"
+ " via interruption. This is not a problem with exec:java, it is a problem with the running code."
+ " Although not serious, it should be remedied." );
}
Expand Down

0 comments on commit d510ba1

Please sign in to comment.