--- D:/eclipse3.2.1/workspace/grizzly/com/sun/grizzly/util/DefaultThreadPool.java (revision 3298) +++ D:/eclipse3.2.1/workspace/grizzly/com/sun/grizzly/util/DefaultThreadPool.java (working copy) @@ -127,8 +127,6 @@ int maxPoolSize, long keepAliveTime, TimeUnit timeUnit){ this(name, corePoolsize, maxPoolSize, keepAliveTime, timeUnit, null); - - this.name = name; } /** @@ -172,6 +170,7 @@ this.maxPoolSize = maxPoolSize; this.idleTimeout = keepAliveTime; this.timeUnit = timeUnit; + this.name = name; if (this.threadFactory == null) { this.threadFactory = new DefaultWorkerThreadFactory();