File tree 1 file changed +2
-4
lines changed
src/main/java/com/password4j
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,7 @@ class Utils
54
54
private static final int [] FROM_BASE64 = new int [256 ];
55
55
56
56
private static final AtomicInteger THREAD_COUNTER = new AtomicInteger (1 );
57
-
58
- private static final ThreadGroup THREAD_GROUP = new ThreadGroup ("Password4j Workers" );
59
-
57
+
60
58
static
61
59
{
62
60
Arrays .fill (FROM_BASE64 , -1 );
@@ -664,7 +662,7 @@ static List<byte[]> split(byte[] array, byte delimiter) {
664
662
665
663
static ExecutorService createExecutorService () {
666
664
return Executors .newFixedThreadPool (AVAILABLE_PROCESSORS , runnable -> {
667
- Thread thread = new Thread (THREAD_GROUP , runnable , "password4j-worker-" + THREAD_COUNTER .getAndIncrement ());
665
+ Thread thread = new Thread (runnable , "password4j-worker-" + THREAD_COUNTER .getAndIncrement ());
668
666
thread .setDaemon (true );
669
667
return thread ;
670
668
});
You can’t perform that action at this time.
0 commit comments