Remove unnecessary warning suppression

Change-Id: Iac493ad8be46d29e82ffb3007aadf25a49debfa8
This commit is contained in:
Nasser Grainawi
2011-05-18 19:54:22 -07:00
committed by Shawn O. Pearce
parent 982e5972cb
commit 3755e9fd85
13 changed files with 0 additions and 25 deletions

View File

@@ -65,7 +65,6 @@ public abstract class Predicate<T> {
}
/** Invert the passed node. */
@SuppressWarnings("unchecked")
public static <T> Predicate<T> not(final Predicate<T> that) {
if (that instanceof NotPredicate) {
// Negate of a negate is the original predicate.