Reduced too broad catch block

This commit is contained in:
Trustin Lee 2009-03-04 10:26:34 +00:00
parent 9e623c9cb1
commit 3a8b92929e

View File

@ -63,7 +63,7 @@ public class ThreadRenamingRunnable implements Runnable {
try { try {
currentThread.setName(threadName); currentThread.setName(threadName);
renamed = true; renamed = true;
} catch (Exception e) { } catch (SecurityException e) {
// Probably SecurityException. // Probably SecurityException.
} }