This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Tree / ParseNodeVector.java
diff --git a/Robust/src/IR/Tree/ParseNodeVector.java b/Robust/src/IR/Tree/ParseNodeVector.java
deleted file mode 100644 (file)
index efedcf6..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package IR.Tree;
-
-import java.util.Vector;
-
-public class ParseNodeVector {
-    private Vector v;
-
-    public ParseNodeVector() {
-       v = new Vector();
-    }
-
-    public void addElement(ParseNode pn) {
-        v.addElement(pn);
-    }
-
-    public void insertElementAt(ParseNode pn, int n) {
-       v.insertElementAt(pn, n);
-    }
-
-    public ParseNode elementAt(int i) {
-        return (ParseNode) v.elementAt(i);
-    }
-
-    public int size() {
-        return v.size();
-    }
-}