mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
remove unused inner class in Tree.java
This commit is contained in:
parent
7b183e8f4e
commit
5b23ad3f40
@ -88,26 +88,4 @@ public class Tree {
|
|||||||
|
|
||||||
isEqual(printMap(map), "a=A, b=B, c=C, q=Q, y=Y, z=Z");
|
isEqual(printMap(map), "a=A, b=B, c=C, q=Q, y=Y, z=Z");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class MyEntry<K,V> implements Map.Entry<K,V> {
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user