diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 13:41:07 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 13:41:07 -0300 |
| commit | 946cab444bc301d8a7c756a1bab039558288de89 (patch) | |
| tree | 419f27c39a509bcd83cae0e6630be8eb7ff95a30 /base/src/main/java/bjc/utils/esodata/SimpleDirectory.java | |
| parent | c82e3b3b2de0633317ec8fc85925e91422820597 (diff) | |
Cleanup work
Diffstat (limited to 'base/src/main/java/bjc/utils/esodata/SimpleDirectory.java')
| -rw-r--r-- | base/src/main/java/bjc/utils/esodata/SimpleDirectory.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/base/src/main/java/bjc/utils/esodata/SimpleDirectory.java b/base/src/main/java/bjc/utils/esodata/SimpleDirectory.java index 69fd019..5e7f480 100644 --- a/base/src/main/java/bjc/utils/esodata/SimpleDirectory.java +++ b/base/src/main/java/bjc/utils/esodata/SimpleDirectory.java @@ -11,21 +11,21 @@ import bjc.utils.funcdata.IMap; * @author EVE * * @param <K> - * The key type of the directory. + * The key type of the directory. + * * @param <V> - * The value type of the directory. + * The value type of the directory. */ public class SimpleDirectory<K, V> implements Directory<K, V> { + /* Our sub-directories. */ private final IMap<K, Directory<K, V>> children; - + /* Our data. */ private final IMap<K, V> data; - /** - * Create a new directory. - */ + /** Create a new directory. */ public SimpleDirectory() { children = new FunctionalMap<>(); - data = new FunctionalMap<>(); + data = new FunctionalMap<>(); } @Override @@ -92,4 +92,4 @@ public class SimpleDirectory<K, V> implements Directory<K, V> { public String toString() { return String.format("SimpleDirectory [children=%s, data=%s]", children, data); } -}
\ No newline at end of file +} |
