diff --git a/src/java/org/apache/commons/collections/ProxyMap.java b/src/java/org/apache/commons/collections/ProxyMap.java index 2bce6d557..5099ffc40 100644 --- a/src/java/org/apache/commons/collections/ProxyMap.java +++ b/src/java/org/apache/commons/collections/ProxyMap.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/ProxyMap.java,v 1.9 2003/05/16 15:28:28 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/ProxyMap.java,v 1.10 2003/07/04 03:32:03 dlr Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -76,15 +76,10 @@ import java.util.Set; * implementation it would provide a loophole around the validation. But, * you might want that loophole, so this class is kept simple.
* - *An example use case is where the wrapped Map
needs
- * synchronization (to make it thread-safe), but the Map
- * returned by Collections.synchronizedMap(map)
- * hides part of map
's public interface.