Fix bugs for static fields/blocks and instanceof operation. To effectively support...
[IRC.git] / Robust / src / ClassLibrary / HashEntry.java
1 class HashEntry {
2   public HashEntry() {
3   }
4   Object key;
5   Object value;
6   HashEntry next;
7 }