summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/data/Multimap.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/bjc/data/Multimap.java')
-rw-r--r--src/main/java/bjc/data/Multimap.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/bjc/data/Multimap.java b/src/main/java/bjc/data/Multimap.java
index 3a9ca44..0e858b7 100644
--- a/src/main/java/bjc/data/Multimap.java
+++ b/src/main/java/bjc/data/Multimap.java
@@ -4,12 +4,13 @@ package bjc.data;
* A map with support for multiple values per key.
*
* @param <KeyType>
- * The type of the keys for the map.
+ * The type of the keys for the map.
* @param <ValueType>
- * The type of the values for the map.
+ * The type of the values for the map.
*
* @author Ben Culkin
*/
public class Multimap<KeyType, ValueType> {
-
+ // TODO either implement this, or find if there is an implementation I've
+ // written elsewhere
}