Author: aadamchik
Date: Wed Feb 22 19:46:01 2012
New Revision: 1292475
URL: http://svn.apache.org/viewvc?rev=1292475&view=rev
Log:
labling map implementation version in case we need to merge changes later
Modified:
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/util/concurrentlinkedhashmap/ConcurrentLinkedHashMap.java
Modified:
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/util/concurrentlinkedhashmap/ConcurrentLinkedHashMap.java
URL:
http://svn.apache.org/viewvc/cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/util/concurrentlinkedhashmap/ConcurrentLinkedHashMap.java?rev=1292475&r1=1292474&r2=1292475&view=diff
==============================================================================
---
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/util/concurrentlinkedhashmap/ConcurrentLinkedHashMap.java
(original)
+++
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/util/concurrentlinkedhashmap/ConcurrentLinkedHashMap.java
Wed Feb 22 19:46:01 2012
@@ -108,6 +108,7 @@ import java.util.concurrent.locks.Reentr
* @param <K> the type of keys maintained by this map
* @param <V> the type of mapped values
*/
+// based on http://concurrentlinkedhashmap.googlecode.com/svn/trunk r754
public class ConcurrentLinkedHashMap<K, V> extends AbstractMap<K, V> implements
ConcurrentMap<K, V>, Serializable {