This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Flat / FlatAtomicEnterNode.java
diff --git a/Robust/src/IR/Flat/FlatAtomicEnterNode.java b/Robust/src/IR/Flat/FlatAtomicEnterNode.java
deleted file mode 100644 (file)
index 4866c29..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-package IR.Flat;
-import java.util.Vector;
-
-public class FlatAtomicEnterNode extends FlatNode {
-    private static int identifier=0;
-
-    private int id;
-
-    public FlatAtomicEnterNode() {
-       this.id=identifier++;
-    }
-
-    /* Returns an unique identifier for this atomic enter node */
-
-    public int getIdentifier() {
-       return id;
-    }
-
-    public String toString() {
-       return "atomicenter";
-    }
-
-    public int kind() {
-       return FKind.FlatAtomicEnterNode;
-    }
-}