< prev index next >

src/java.desktop/windows/classes/sun/awt/windows/WPageDialogPeer.java

Print this page

        

@@ -23,12 +23,10 @@
  * questions.
  */
 
 package sun.awt.windows;
 
-import sun.misc.ManagedLocalsThread;
-
 final class WPageDialogPeer extends WPrintDialogPeer {
 
     WPageDialogPeer(WPageDialog target) {
         super(target);
     }

@@ -51,8 +49,8 @@
                 // but if it is we need to trap it so the thread does
                 // not hide is called and the thread doesn't hang.
             }
             ((WPrintDialog)target).setVisible(false);
         };
-        new ManagedLocalsThread(runnable).start();
+        new Thread(null, runnable, "PageDialog", 0, false).start();
     }
 }
< prev index next >