Author: bayard Date: Sat May 16 08:17:21 2009 New Revision: 775428 URL: http://svn.apache.org/viewvc?rev=775428&view=rev Log: Commented out unused field Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/IntHashMap.java Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/IntHashMap.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/IntHashMap.java?rev=775428&r1=775427&r2=775428&view=diff ============================================================================== --- commons/proper/lang/trunk/src/java/org/apache/commons/lang/IntHashMap.java (original) +++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/IntHashMap.java Sat May 16 08:17:21 2009 @@ -68,7 +68,7 @@ */ private static class Entry { int hash; - int key; +// int key; // not used currently Object value; Entry next; @@ -82,7 +82,7 @@ */ protected Entry(int hash, int key, Object value, Entry next) { this.hash = hash; - this.key = key; +// this.key = key; this.value = value; this.next = next; }