Fixed typos.

This commit is contained in:
Harald Kuhr 2012-01-25 16:06:26 +01:00
parent c19338b5b9
commit d36d828110

View File

@ -33,7 +33,7 @@ import java.io.Serializable;
/** /**
* An (immutable) empty {@link Map}, that supports all {@code Map} operations * An (immutable) empty {@link Map}, that supports all {@code Map} operations
* without throwing expcetions (in contrast to {@link Collections#EMPTY_MAP} * without throwing exceptions (in contrast to {@link Collections#EMPTY_MAP}
* that will throw exceptions on {@code put}/{@code remove}). * that will throw exceptions on {@code put}/{@code remove}).
* <p/> * <p/>
* NOTE: This is not a general purpose {@code Map} implementation, * NOTE: This is not a general purpose {@code Map} implementation,
@ -41,7 +41,7 @@ import java.io.Serializable;
* Instances of this class will always be an empty map. * Instances of this class will always be an empty map.
* *
* @author <a href="mailto:harald.kuhr@gmail.com">Harald Kuhr</a> * @author <a href="mailto:harald.kuhr@gmail.com">Harald Kuhr</a>
* @version $Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/util/NullMap.java#2 $ * @version $Id: com/twelvemonkeys/util/NullMap.java#2 $
*/ */
public final class NullMap<K, V> implements Map<K, V>, Serializable { public final class NullMap<K, V> implements Map<K, V>, Serializable {
public final int size() { public final int size() {