This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 class HashEntry {
2     public HashEntry() {}
3     Object key;
4     Object value;
5     HashEntry next;    
6 }