View Javadoc
1   package org.checkstyle.suppressionxpathfilter.finallocalvariable;
2   
3   public class InputXpathFinalLocalVariableTryBlock {
4       private void checkCodeBlock() {
5           try {
6               int start = 0; // warn
7   
8               final int from;
9               if (true) {
10                  from = 0;
11              } else {
12                  return;
13              }
14          } catch (Exception e) {
15              throw new RuntimeException(e);
16          }
17      }
18  }