This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push:
new ce868cb4c Javadoc @since tag should be after @return and @throws
ce868cb4c is described below
commit ce868cb4cd47e267e20f87518d65b8bac1e54eb2
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sat Mar 22 09:27:47 2025 -0400
Javadoc @since tag should be after @return and @throws
---
src/main/java/org/apache/commons/collections4/CollectionUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/collections4/CollectionUtils.java
b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
index 435e87631..d1e2c2849 100644
--- a/src/main/java/org/apache/commons/collections4/CollectionUtils.java
+++ b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
@@ -762,9 +762,9 @@ public class CollectionUtils {
* Returns the immutable EMPTY_COLLECTION with generic type safety.
*
* @see #EMPTY_COLLECTION
- * @since 4.0
* @param <T> the element type
* @return immutable empty collection
+ * @since 4.0
*/
@SuppressWarnings("unchecked") // OK, empty collection is compatible with
any type
public static <T> Collection<T> emptyCollection() {