summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/bjc/data/Multimap.java7
-rw-r--r--src/main/java/bjc/data/TopDownTransformIterator.java2
2 files changed, 5 insertions, 4 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
}
diff --git a/src/main/java/bjc/data/TopDownTransformIterator.java b/src/main/java/bjc/data/TopDownTransformIterator.java
index 5aa2409..66faafe 100644
--- a/src/main/java/bjc/data/TopDownTransformIterator.java
+++ b/src/main/java/bjc/data/TopDownTransformIterator.java
@@ -36,7 +36,7 @@ public class TopDownTransformIterator<ContainedType> implements Iterator<ITree<C
*/
public interface TreeTransform<ContainedType>
extends BiFunction<ITree<ContainedType>, Consumer<Iterator<ITree<ContainedType>>>, ITree<ContainedType>> {
-
+ // Alias type; no body is needed
}
/*