Revert invalid fix

This commit is contained in:
norman 2011-10-17 15:56:38 +02:00
parent 4be22a42ef
commit 48c6793d30

View File

@ -42,7 +42,7 @@ public interface ThreadNameDeterminer {
ThreadNameDeterminer CURRENT = new ThreadNameDeterminer() {
public String determineThreadName(String currentThreadName,
String proposedThreadName) throws Exception {
return currentThreadName;
return null;
}
};