--- old/src/java.desktop/share/classes/javax/swing/text/LayoutQueue.java 2016-04-01 14:39:17.074986054 -0700 +++ new/src/java.desktop/share/classes/javax/swing/text/LayoutQueue.java 2016-04-01 14:39:16.966986055 -0700 @@ -26,7 +26,6 @@ import java.util.Vector; import sun.awt.AppContext; -import sun.misc.ManagedLocalsThread; /** * A queue of text layout tasks. @@ -92,7 +91,7 @@ } } while (work != null); }; - worker = new ManagedLocalsThread(workerRunnable, "text-layout"); + worker = new Thread(null, workerRunnable, "text-layout", 0, false); worker.setPriority(Thread.MIN_PRIORITY); worker.start(); }