add more comments
[IRC.git] / Robust / src / ClassLibrary / HashEntry.java
1 class HashEntry {
2     public HashEntry() {}
3     Object key;
4     Object value;
5     HashEntry next;    
6 }