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 670dc76  Remove: Unnecessary @SuppressWarnings("unchecked").
670dc76 is described below

commit 670dc76cf575e1af4a9e8886f07dafd6ee73e2d1
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Fri Jul 5 12:57:40 2019 -0400

    Remove: Unnecessary @SuppressWarnings("unchecked").
---
 src/main/java/org/apache/commons/collections4/FluentIterable.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/collections4/FluentIterable.java 
b/src/main/java/org/apache/commons/collections4/FluentIterable.java
index 042429a..3c7f040 100644
--- a/src/main/java/org/apache/commons/collections4/FluentIterable.java
+++ b/src/main/java/org/apache/commons/collections4/FluentIterable.java
@@ -78,7 +78,6 @@ public class FluentIterable<E> implements Iterable<E> {
      * @param <T>  the element type
      * @return a new empty FluentIterable
      */
-    @SuppressWarnings("unchecked")
     public static <T> FluentIterable<T> empty() {
         return IterableUtils.EMPTY_ITERABLE;
     }

Reply via email to