Generated by
JDiff

Class org.springframework.core.CollectionFactory

Removed Methods
ConcurrentMap createConcurrentMap(int) Create a concurrent Map with a dedicated ConcurrentMap interface: This implementation always creates a java.util.concurrent.ConcurrentHashMap, since Spring 3.0 requires JDK 1.5 anyway.
Map createConcurrentMapIfPossible(int) Create a concurrent Map if possible: This implementation always creates a java.util.concurrent.ConcurrentHashMap, since Spring 3.0 requires JDK 1.5 anyway.
Set<T> createCopyOnWriteSet() Create a copy-on-write Set (allowing for synchronization-less iteration) if possible: This implementation always creates a java.util.concurrent.CopyOnWriteArraySet, since Spring 3 requires JDK 1.5 anyway.
Map createIdentityMapIfPossible(int) Create an identity Map if possible: This implementation always creates a java.util.IdentityHashMap, since Spring 2.5 requires JDK 1.4 anyway.
Map createLinkedCaseInsensitiveMapIfPossible(int) Create a linked case-insensitive Map if possible: This implementation always returns a org.springframework.util.LinkedCaseInsensitiveMap.
(Map<K, V>createLinkedMapIfPossible(int) Create a linked Map if possible: This implementation always creates a java.util.LinkedHashMap, since Spring 2.5 requires JDK 1.4 anyway.
Set<T> createLinkedSetIfPossible(int) Create a linked Set if possible: This implementation always creates a java.util.LinkedHashSet, since Spring 2.5 requires JDK 1.4 anyway.