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

Print this page

        

@@ -74,11 +74,10 @@
     /**
      * 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);
     }
 }