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() {
5555 Method ofVirtualMethod = Thread .class .getMethod ("ofVirtual" );
5656 Object threadBuilderOfVirtual = ofVirtualMethod .invoke (null );
5757 Method factoryMethod = threadBuilderOfVirtual .getClass ().getMethod ("factory" );
58- System .out .println ("virtual THREAD FACTORY" );
5958 return (ThreadFactory ) factoryMethod .invoke (threadBuilderOfVirtual );
6059 } catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e ) {
6160 return Executors .defaultThreadFactory ();
6261 }
6362
6463 } else {
65- System .out .println ("default THREAD FACTORY" );
6664 return Executors .defaultThreadFactory ();
6765 }
6866 }
You can’t perform that action at this time.
0 commit comments