Skip to content

Commit

Permalink
Remove Not Class
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Oct 29, 2014
1 parent 24c535e commit ebaf9a1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 55 deletions.
13 changes: 0 additions & 13 deletions src/main/java/rx/functions/Functions.java
Original file line number Diff line number Diff line change
Expand Up @@ -344,19 +344,6 @@ public Void call(Object... args) {
};
}

/**
* Constructs a predicate that returns true for each input for which the source predicate returns false, and
* vice versa.
*
* @param predicate
* the source predicate to negate
* @return a function that returns a Boolean that represents an inversion of the logical effect of
* {@code predicate}
*/
public static <T> Func1<T, Boolean> not(Func1<? super T, Boolean> predicate) {
return new Not<T>(predicate);
}

/**
* Returns a function that always returns {@code true}.
*
Expand Down
42 changes: 0 additions & 42 deletions src/main/java/rx/functions/Not.java

This file was deleted.

0 comments on commit ebaf9a1

Please sign in to comment.