View Javadoc
1   package org.checkstyle.suppressionxpathfilter.needbraces;
2   
3   public class InputXpathNeedBracesSingleLineLambda {
4       static Runnable r3 = () -> // warn
5               String.CASE_INSENSITIVE_ORDER.equals("Hello world two!");
6   }