Value: cleanup deprecated whereNot()

This commit is contained in:
Paul Campbell 2018-07-28 19:53:31 +01:00
parent f9c6badde5
commit 888123b722
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
* Conditional * Conditional
** Functional Condition and Value. ** Functional Condition and Value.
[[https://oss.sonatype.org/content/repositories/releases/net/kemitix/conditional][file:https://img.shields.io/nexus/r/https/oss.sonatype.org/net.kemitix/conditional.svg?style=for-the-badge]] [[https://oss.sonatype.org/content/repositories/releases/net/kemitix/conditional][file:https://img.shields.io/nexus/r/https/oss.sonatype.org/net.kemitix/conditional.svg?style=for-the-badge]]

View file

@ -134,7 +134,7 @@ public interface Value {
*/ */
@Deprecated @Deprecated
static <T> ValueClause<T> whereNot(final boolean clause) { static <T> ValueClause<T> whereNot(final boolean clause) {
return where(!clause); return Value.<T>where(clause).not();
} }
/** /**