Commented out System.out.println

This commit is contained in:
Trustin Lee 2010-06-30 09:42:48 +00:00
parent 6bebbdad55
commit 8216a3fa5e

View File

@ -99,7 +99,7 @@ public class ThreadRenamingRunnable implements Runnable {
boolean renamed = false;
if (!oldThreadName.equals(newThreadName)) {
try {
System.out.println(newThreadName);
//System.out.println(newThreadName);
thread.setName(newThreadName);
renamed = true;
} catch (SecurityException e) {