Value: cleanup deprecated whereNot()
This commit is contained in:
parent
f9c6badde5
commit
888123b722
2 changed files with 2 additions and 1 deletions
|
@ -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]]
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue