File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
src/test/java/org/scijava Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -113,10 +113,7 @@ public static class CommandRawArrayInput implements Command {
113113 @ Override
114114 public void run () {
115115 final StringBuilder sb = new StringBuilder ();
116- System .out .println ("userObjects length : " +userObjects .length );
117- System .out .println ("class : " +userObjects .getClass ());
118116 for (UserClass obj : userObjects ) {
119- System .out .println ("\t " +obj );
120117 sb .append (obj .toString ()+";" );
121118 }
122119 result = sb .toString ();
@@ -136,10 +133,7 @@ public static class CommandGenericsWildcardArrayInput implements Command {
136133 @ Override
137134 public void run () {
138135 final StringBuilder sb = new StringBuilder ();
139- System .out .println ("userObjects length : " +userObjects .length );
140- System .out .println ("class : " +userObjects .getClass ());
141136 for (UserClass obj : userObjects ) {
142- System .out .println ("\t " +obj );
143137 sb .append (obj .toString ()+";" );
144138 }
145139 result = sb .toString ();
Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ public static void createTask(
8787 new Thread (
8888 () -> {
8989 try {
90- System .out .println ("Waiting to start task " +taskName );
9190 Thread .sleep (msBeforeStart );
9291
9392 // Task started
You can’t perform that action at this time.
0 commit comments