summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2017-03-11 05:29:03 -0500
committerbculkin2442 <bjculkin@mix.wvu.edu>2017-03-11 05:29:03 -0500
commit6f4b1e1663660d46523804c1cbb707e31686b31d (patch)
treeae64c1b5842242f6e197591a24fd95850f7fe596 /BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java
parent4631f2cec9d94a0b4869fe1fc5c3c036f42a8db0 (diff)
Directory finished.
The basics of the directory are finished.
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java b/BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java
deleted file mode 100644
index 231abbc..0000000
--- a/BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package bjc.utils.esodata;
-
-/**
- * Represents a hierarchical map.
- *
- * What's useful about this is that you can hand sub-directories to people and
- * be able to ensure that they can't write outside of it.
- *
- * @param K The key type of the map.
- * @param V The value type of the map.
- */
-public class TreeDict<K, V> {
- private Map<K, TreeDict<K, V>> children;
-
- private Map<K, V> data;
-
- public T
-}