Suppress PMD.ShortMethodName for or() methods

This commit is contained in:
Paul Campbell 2018-03-13 18:00:59 +00:00
parent ac3e253bf2
commit 66a0222253
2 changed files with 2 additions and 0 deletions

View file

@ -79,6 +79,7 @@ public interface Condition {
*
* @return the Condition
*/
@SuppressWarnings("PMD.ShortMethodName")
Condition or(Supplier<Boolean> clause);
/**

View file

@ -122,6 +122,7 @@ public interface Value {
*
* @return a true or false value clause
*/
@SuppressWarnings("PMD.ShortMethodName")
ValueClause<T> or(Supplier<Boolean> clause);
/**