View Javadoc
1   package org.checkstyle.suppressionxpathfilter.arraytrailingcomma;
2   
3   public class InputXpathArrayTrailingCommaMatrix
4   {
5        int[][] d1 = new int[][]
6       {
7           {1, 2,},
8           {3, 3,},
9           {5, 6,},
10      };
11  
12      int[][] d2 = new int[][]
13      {
14          {1,
15           2},
16          {3, 3,},
17          {5, 6,} // warn
18      };
19  
20  }