From ca644b743a9f97d207a36a2eff46f1446a5909e2 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 19 Jan 2010 14:20:54 +0000 Subject: [PATCH] removed Commons Collection reference from javadoc (SPR-6716) git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2835 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../java/org/springframework/core/CollectionFactory.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/CollectionFactory.java b/org.springframework.core/src/main/java/org/springframework/core/CollectionFactory.java index b598947818f..e34d65fe493 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/CollectionFactory.java +++ b/org.springframework.core/src/main/java/org/springframework/core/CollectionFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,12 +37,11 @@ import java.util.concurrent.CopyOnWriteArraySet; import org.springframework.util.LinkedCaseInsensitiveMap; /** - * Factory for collections, being aware of Commons Collection 3.x's extended - * collections as well as of JDK 1.5+ concurrent collections. + * Factory for collections, being aware of Java 5 and Java 6 collections. * Mainly for internal use within the framework. * - *

The goal of this class is to avoid runtime dependencies on JDK 1.5+ and - * Commons Collections 3.x, simply using the best collection implementation + *

The goal of this class is to avoid runtime dependencies on a specific + * Java version, while nevertheless using the best collection implementation * that is available at runtime. * * @author Juergen Hoeller