diff options
| author | krolxon <krolyxon@tutanota.com> | 2024-02-18 12:55:39 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2024-02-18 12:55:39 +0530 |
| commit | 7f3597e705371d5eeaf4f27375de5fcb38a63498 (patch) | |
| tree | c9ac2c919113904240b923e3e04359d8dc0b0709 /src/History.java | |
| parent | 787cbb6eb4abbde38f48541aa8d9642e4fb8a0ec (diff) | |
use JList for history instead of JTextField
Diffstat (limited to 'src/History.java')
| -rw-r--r-- | src/History.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/History.java b/src/History.java deleted file mode 100644 index ef2807b..0000000 --- a/src/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; - } -} |
