View Javadoc
1   package org.checkstyle.suppressionxpathfilter.modifiedcontrolvariable;
2   
3   public class InputXpathModifiedControlVariableNestedWithFor {
4       void test(){
5           for (int i = 0; i < 10; i++) {
6               for (int j = 0; j < 5; j++) {
7                   j *= 2; // warn
8               }
9           }
10      }
11  }