]> source.dussan.org Git - sonarqube.git/blob
c3c8e1c8bcb7939c85d1c79233c00a8a67705600
[sonarqube.git] /
1 package org.sonar.tests.violationstimemachine;
2
3 public class Hello {
4
5   // We need two similar violations here to check that they would be associated correctly
6
7   protected void methodOne() { // design for extension
8     int i = 0; // unused local variable
9     i++;
10   }
11
12   protected void methodTwo() { // design for extension
13     int i = 0; // unused local variable
14     i++;
15   }
16
17   public final int methodReturnThree() { // fixed - design for extension
18     int j = 0; // new - unused local variable
19     return 3;
20   }
21 }