Skip to content

Commit

Permalink
[MNG-6977] Use hyphen when creating builder threads (names)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Aug 17, 2020
1 parent 9864cdb commit 9120d86
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public class BuildThreadFactory

public Thread newThread( Runnable r )
{
return new Thread( r, String.format( "%s %d", PREFIX, id.getAndIncrement() ) );
return new Thread( r, String.format( "%s-%d", PREFIX, id.getAndIncrement() ) );
}
}
}

0 comments on commit 9120d86

Please sign in to comment.