示例#1
0
 /**
  * Removes the specified value from the specified key's associated values list.
  *
  * @param key the key to dissociate the value from
  * @param value the value to be dissociated
  */
 public void remove(T key, V value) {
   SortedList<V> temp = map.get(key);
   temp.remove(value);
   map.put(key, temp);
 }