diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-03-11 05:29:03 -0500 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-03-11 05:29:03 -0500 |
| commit | 6f4b1e1663660d46523804c1cbb707e31686b31d (patch) | |
| tree | ae64c1b5842242f6e197591a24fd95850f7fe596 /BJC-Utils2/src/main/java/bjc/utils/esodata/TreeDict.java | |
| parent | 4631f2cec9d94a0b4869fe1fc5c3c036f42a8db0 (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.java | 18 |
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 -} |
