< prev index next >

src/java.desktop/share/classes/javax/swing/JTable.java

Print this page

        

*** 54,64 **** import java.util.List; import javax.print.attribute.*; import javax.print.PrintService; - import sun.misc.ManagedLocalsThread; import sun.reflect.misc.ReflectUtil; import sun.swing.SwingUtilities2; import sun.swing.SwingUtilities2.Section; import static sun.swing.SwingUtilities2.Section.*; --- 54,63 ----
*** 6373,6383 **** printingStatus.dispose(); } }; // start printing on another thread ! Thread th = new ManagedLocalsThread(runnable); th.start(); printingStatus.showModal(true); // look for any error that the printing may have generated --- 6372,6382 ---- printingStatus.dispose(); } }; // start printing on another thread ! Thread th = new Thread(null, runnable, "JTablePrint", 0, false); th.start(); printingStatus.showModal(true); // look for any error that the printing may have generated
< prev index next >