]> source.dussan.org Git - sonarqube.git/blob
796d90cfad5c2fa63c5c447f4f0f1925e279f22f
[sonarqube.git] /
1 package com.sonar.it.samples.modules.a2;
2
3 public class HelloA2 {
4
5         public HelloA2(int i) {
6                 int j = i++;
7         }
8
9         public void hello() {
10                 System.out.println("hello" + " xoo");
11   }
12
13         private String myMethod() {
14                 if (foo == bar) {
15                         return "hello";
16                 } else {
17                         throw new IllegalStateException();
18                 }
19         }
20 }