View Javadoc
1   package org.checkstyle.suppressionxpathfilter.whitespaceafter;
2   
3   public class InputXpathWhitespaceAfterNotFollowed {
4       int[] bad = {1,2}; //warn
5       int[] good = {1, 2};
6   }