Skip to content

Commit ebaf9a1

Browse files
Remove Not Class
As per #1798
1 parent 24c535e commit ebaf9a1

File tree

2 files changed

+0
-55
lines changed

2 files changed

+0
-55
lines changed

src/main/java/rx/functions/Functions.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -344,19 +344,6 @@ public Void call(Object... args) {
344344
};
345345
}
346346

347-
/**
348-
* Constructs a predicate that returns true for each input for which the source predicate returns false, and
349-
* vice versa.
350-
*
351-
* @param predicate
352-
* the source predicate to negate
353-
* @return a function that returns a Boolean that represents an inversion of the logical effect of
354-
* {@code predicate}
355-
*/
356-
public static <T> Func1<T, Boolean> not(Func1<? super T, Boolean> predicate) {
357-
return new Not<T>(predicate);
358-
}
359-
360347
/**
361348
* Returns a function that always returns {@code true}.
362349
*

src/main/java/rx/functions/Not.java

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)