Suppress PMD.ShortMethodName for or() methods
This commit is contained in:
parent
ac3e253bf2
commit
66a0222253
2 changed files with 2 additions and 0 deletions
|
@ -79,6 +79,7 @@ public interface Condition {
|
|||
*
|
||||
* @return the Condition
|
||||
*/
|
||||
@SuppressWarnings("PMD.ShortMethodName")
|
||||
Condition or(Supplier<Boolean> clause);
|
||||
|
||||
/**
|
||||
|
|
|
@ -122,6 +122,7 @@ public interface Value {
|
|||
*
|
||||
* @return a true or false value clause
|
||||
*/
|
||||
@SuppressWarnings("PMD.ShortMethodName")
|
||||
ValueClause<T> or(Supplier<Boolean> clause);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue