View Javadoc
1   package org.checkstyle.suppressionxpathfilter.multiplestringliterals;
2   
3   public class InputXpathMultipleStringLiteralsIgnoreRegexp {
4   
5       public void myTest() {
6   
7         String a3 = "DoubleString" + "DoubleString"; // warn
8         String a4 = "SingleString"; // ok
9         String a5 = ", " + ", " + ", "; // ok
10  
11      }
12  }