Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/CompositeKeyHashMap.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/CompositeKeyHashMap.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/CompositeKeyHashMap.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/CompositeKeyHashMap.java
index bb865f8a7d8..864e1462110 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/CompositeKeyHashMap.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/CompositeKeyHashMap.java
@@ -64,7 +64,6 @@ public class CompositeKeyHashMap<KeyOne, KeyTwo, Value> implements Map<Pair<KeyO
/**
* Use this method to determine if any puts(keyOne, anything) have occurred
*
- * @param keyOne
* @return whether the map contains the key keyOne
*/
@Override
@@ -74,8 +73,6 @@ public class CompositeKeyHashMap<KeyOne, KeyTwo, Value> implements Map<Pair<KeyO
}
/**
- * @param key1
- * @param key2
* @return whether the map contains the compound key <keyOne, keyTwo>
*/
public boolean containsKey(KeyOne key1, KeyTwo key2) {
@@ -85,7 +82,6 @@ public class CompositeKeyHashMap<KeyOne, KeyTwo, Value> implements Map<Pair<KeyO
/**
* determines if at least one of the compound keys are mapped to this value
*
- * @param value
* @return whether the map contains this value
*/
@Override
@@ -177,7 +173,6 @@ public class CompositeKeyHashMap<KeyOne, KeyTwo, Value> implements Map<Pair<KeyO
}
/**
- * @param key1
* @return the previous value associated with key, or null if there was no mapping for key.
*/
public Collection<Value> removeValues(KeyOne key1) {

Back to the top