We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2c1fe commit 8c8c742Copy full SHA for 8c8c742
src/main/java/mindustrytool/ServerController.java
@@ -206,9 +206,7 @@ private class DefaultThreadFactory implements ThreadFactory {
206
@SuppressWarnings("removal")
207
SecurityManager s = System.getSecurityManager();
208
group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup();
209
- namePrefix = "background-pool-" +
210
- poolNumber.getAndIncrement() +
211
- "-thread-";
+ namePrefix = "background-pool-" + poolNumber.getAndIncrement() + "-thread-";
212
}
213
214
public Thread newThread(Runnable r) {
0 commit comments