Slight description editing.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5953 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2009-09-12 01:15:53 +00:00
parent 9b946dfbd5
commit bba467be39
+4 -4
View File
@@ -31,10 +31,10 @@ import com.google.common.collect.Maps;
/**
* Provides a map implementation that automatically creates, and inserts into the map, a default
* value for keys with no value when a value is fetched via the {@link #get} method. Note that this
* map must assume that all keys supplied to {@link #get} are valid instances of the type specified
* by K as those keys will be used in a subsequent call to {@link #put}. Thus you must not call
* {@link #get} with a key of invalid type or you will cause your map to become unsound.
* value for any key fetched via the {@link #get} method which has no value. Note that this map
* must assume that all keys supplied to {@link #get} are valid instances of the type specified by
* K as those keys will be used in a subsequent call to {@link #put}. Thus you must not call {@link
* #get} with a key of invalid type or you will cause your map to become unsound.
*/
public class DefaultMap<K, V> extends ForwardingMap<K, V>
{