Remove: Unnecessary @SuppressWarnings("unchecked").

This commit is contained in:
Gary Gregory 2019-07-05 12:57:40 -04:00
parent 4ddee8a0ac
commit 670dc76cf5
1 changed files with 0 additions and 1 deletions

View File

@ -78,7 +78,6 @@ public class FluentIterable<E> implements Iterable<E> {
* @param <T> the element type * @param <T> the element type
* @return a new empty FluentIterable * @return a new empty FluentIterable
*/ */
@SuppressWarnings("unchecked")
public static <T> FluentIterable<T> empty() { public static <T> FluentIterable<T> empty() {
return IterableUtils.EMPTY_ITERABLE; return IterableUtils.EMPTY_ITERABLE;
} }