Robin Garner
Thu, 18 Dec 2008 19:20:47 -0800
-- Robin Garner
--- ./components/classpath/97.2p7/classpath/java/lang/ThreadLocalMap.java 2008-12-09 17:35:48.000000000 +1100
+++ ./libraryInterface/Common/src/java/lang/ThreadLocalMap.java 2008-12-17 11:40:22.000000000 +1100
@@ -301,7 +301,9 @@
* Clear out the map. Done once during thread death.
*/
void clear() {
- entries = null;
+ this.entries = new Entry[1];
+ this.count = 0;
+ this.hashMask = 0;
}
/**