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.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/java/bjc/data/Multimap.java b/src/main/java/bjc/data/Multimap.java
deleted file mode 100644
index 0e858b7..0000000
--- a/src/main/java/bjc/data/Multimap.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package bjc.data;
-
-/**
- * A map with support for multiple values per key.
- *
- * @param <KeyType>
- * The type of the keys for the map.
- * @param <ValueType>
- * 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
-}