mirror of https://github.com/apache/maven.git
[MNG-6977] Use hyphen when creating builder threads (names)
This commit is contained in:
parent
9864cdbadc
commit
9120d86573
|
@ -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() ) );
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue