View Javadoc
1   package org.checkstyle.suppressionxpathfilter.unnecessaryparentheses;
2   
3   public class InputXpathUnnecessaryParenthesesLambdas {
4       public interface Predicate {
5           boolean test(Integer t);
6       }
7       Predicate predicate = (value) -> value != null; // warn
8   }