]> source.dussan.org Git - sonarqube.git/blob
f28489baaa3bcd559ff56d2d799844a0f1d5fbdd
[sonarqube.git] /
1
2 package org.sonar.tests.timemachine;
3
4 public class Hello {
5
6   protected void methodOne() {
7     int i = 0;
8     i++;
9   }
10
11   protected void methodTwo() {
12     int i = 0;
13     i++;
14   }
15
16   protected int methodReturnThree() {
17     return 3;
18   }
19 }