From 5b23ad3f409a3c38cfff1723b0c5b89c14496ab8 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 28 Jul 2009 16:58:33 -0600 Subject: [PATCH] remove unused inner class in Tree.java --- test/Tree.java | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/test/Tree.java b/test/Tree.java index 55858ab8d7..ded42a27ea 100644 --- a/test/Tree.java +++ b/test/Tree.java @@ -88,26 +88,4 @@ public class Tree { isEqual(printMap(map), "a=A, b=B, c=C, q=Q, y=Y, z=Z"); } - - private static class MyEntry implements Map.Entry { - public final K key; - public V value; - - public MyEntry(K key, V value) { - this.key = key; - this.value = value; - } - - public K getKey() { - return key; - } - - public V getValue() { - return value; - } - - public void setValue(V value) { - this.value = value; - } - } }