From 0d231cb285774c23252dd4afdefb33eaedd5714d Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Sat, 16 May 2009 08:17:21 +0000 Subject: [PATCH] Commented out unused field git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@775428 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/lang/IntHashMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/lang/IntHashMap.java b/src/java/org/apache/commons/lang/IntHashMap.java index 44ed27cf3..b0d42e2f7 100644 --- a/src/java/org/apache/commons/lang/IntHashMap.java +++ b/src/java/org/apache/commons/lang/IntHashMap.java @@ -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; }