File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
logback-core/src/main/java/ch/qos/logback/core/util Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,12 @@ private ThreadFactory makeThreadFactory() {
55
55
Method ofVirtualMethod = Thread .class .getMethod ("ofVirtual" );
56
56
Object threadBuilderOfVirtual = ofVirtualMethod .invoke (null );
57
57
Method factoryMethod = threadBuilderOfVirtual .getClass ().getMethod ("factory" );
58
- System .out .println ("virtual THREAD FACTORY" );
59
58
return (ThreadFactory ) factoryMethod .invoke (threadBuilderOfVirtual );
60
59
} catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e ) {
61
60
return Executors .defaultThreadFactory ();
62
61
}
63
62
64
63
} else {
65
- System .out .println ("default THREAD FACTORY" );
66
64
return Executors .defaultThreadFactory ();
67
65
}
68
66
}
You can’t perform that action at this time.
0 commit comments