diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-04-14 16:43:40 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-04-14 16:43:40 -0400 |
| commit | e525a21d91879bc2026f5932e894c428b146d36c (patch) | |
| tree | e4234419722ac302a0a93e0ad2ad36bd7ea2e5ca /src/main/java/bjc/esodata/Multimap.java | |
| parent | f51f6da7319787348c38b875652b5c0e9f88c8aa (diff) | |
Cleanup some warnings and stuff
Diffstat (limited to 'src/main/java/bjc/esodata/Multimap.java')
| -rw-r--r-- | src/main/java/bjc/esodata/Multimap.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/bjc/esodata/Multimap.java b/src/main/java/bjc/esodata/Multimap.java index f0876db..a79f1b0 100644 --- a/src/main/java/bjc/esodata/Multimap.java +++ b/src/main/java/bjc/esodata/Multimap.java @@ -11,6 +11,8 @@ import java.util.*; * have to remove that pair as many times as you added it. * * @author Ben Culkin + * @param <KeyType> The type of keys in the map. + * @param <ValueType> The type of values in the map. */ public class Multimap<KeyType, ValueType> { private Map<KeyType, ThresholdSet<ValueType>> backing; |
