src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/threadpool/ThreadPoolImpl.java

Print this page

        

@@ -52,11 +52,10 @@
 import com.sun.corba.se.spi.monitoring.LongMonitoredAttributeBase;
 
 import com.sun.corba.se.impl.logging.ORBUtilSystemException;
 import com.sun.corba.se.impl.orbutil.ORBConstants;
 import com.sun.corba.se.spi.logging.CORBALogDomains;
-import com.sun.corba.se.impl.transport.ManagedLocalsThread;
 
 public class ThreadPoolImpl implements ThreadPool
 {
     // serial counter useful for debugging
     private static AtomicInteger threadCounter = new AtomicInteger(0);

@@ -458,11 +457,11 @@
             availableWorkerThreads++;
         }
     }
 
 
-    private class WorkerThread extends ManagedLocalsThread implements Closeable
+    private class WorkerThread extends sun.misc.ManagedLocalsThread implements Closeable
     {
         private Work currentWork;
         private int threadId = 0; // unique id for the thread
         private volatile boolean closeCalled = false;
         private String threadPoolName;