Commented out unused field

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@775428 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-05-16 08:17:21 +00:00
parent cbc1dc8c5a
commit 0d231cb285
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class IntHashMap {
*/
private static class Entry {
int hash;
int key;
// int key; // not used currently
Object value;
Entry next;
@ -82,7 +82,7 @@ private static class Entry {
*/
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;
}