reformat benchmark source codes to meet the requirements of the annotation generation.
[IRC.git] / Robust / src / ClassLibrary / HashEntry.java
1 class HashEntry {
2   public HashEntry() {
3   }
4   Object key;
5   Object value;
6   HashEntry next;
7 }