Tried to squeeze out more performance by changing the LinkedLIsts in the Delaunay...
[IRC.git] / Robust / src / ClassLibrary / HashEntry.java
1 class HashEntry {
2   public HashEntry() {
3   }
4   Object key;
5   Object value;
6   HashEntry next;
7 }