Under Original/Normal_Java/ one would find the original Labyrinth project ported...
[IRC.git] / Robust / src / Benchmarks / Java-Single / Labyrinth / mlp / rBlocked / List_Node.java
1
2 public class List_Node {
3     Object dataPtr;
4     List_Node nextPtr;
5
6     public List_Node() {
7         dataPtr = null;
8         nextPtr = null;
9     }
10 }