Skip to content

Commit

Permalink
update comment to clarify
Browse files Browse the repository at this point in the history
  • Loading branch information
abyrd committed Jan 28, 2015
1 parent f379b04 commit 8602e12
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,11 @@ public void write(OutputStream outStream) throws IOException {
}
}

/** A HashMap that has been extended to track the greatest or smallest value for each key. */
/**
* A HashMap that has been extended to track the greatest or smallest value for each key.
* Note that this does not change the meaning of the 'put' method. It adds two new methods that add the min/max
* behavior.
*/
public static class MinMap<K, V extends Comparable<V>> extends HashMap<K, V> {
private static final long serialVersionUID = -23L;

Expand Down

0 comments on commit 8602e12

Please sign in to comment.