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