src/share/classes/java/lang/InheritableThreadLocal.java

Print this page

        

*** 74,84 **** /** * Create the map associated with a ThreadLocal. * * @param t the current thread * @param firstValue value for the initial entry of the table. - * @param map the map to store. */ void createMap(Thread t, T firstValue) { t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue); } } --- 74,83 ----