aboutsummaryrefslogtreecommitdiff
path: root/History.java
diff options
context:
space:
mode:
Diffstat (limited to 'History.java')
-rw-r--r--History.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/History.java b/History.java
deleted file mode 100644
index ef2807b..0000000
--- a/History.java
+++ /dev/null
@@ -1,17 +0,0 @@
-import java.util.Vector;
-
-public class History {
- private Vector<String> hist;
-
- History() {
- hist = new Vector<String>();
- }
-
- public void clearHistory() {
- hist.clear();
- }
-
- public Vector<String> getHistory() {
- return hist;
- }
-}