diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-04-07 16:24:20 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-04-07 16:24:20 -0400 |
| commit | 13aec7074fb0583a72112376df7b8764b0823ce0 (patch) | |
| tree | 4e0b92b73edd182be8fe7255b69d92af3f9b62c9 /src/main | |
| parent | dd04fa3a64f7f9ea03691821eaa22a870e7a0529 (diff) | |
Cleanup some warnings
Cleanup some warnings
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/java/bjc/data/Multimap.java | 7 | ||||
| -rw-r--r-- | src/main/java/bjc/data/TopDownTransformIterator.java | 2 |
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 } /* |
