ThreadNameDeterminer.CURRENT return the right name now. Was returning

null before all the time
This commit is contained in:
norman 2011-10-17 15:49:29 +02:00
parent 35401caac4
commit 4be22a42ef

View File

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