]> source.dussan.org Git - sonarqube.git/blob
33ad2d055a212199fe775cfeb2b5520c8cd090fc
[sonarqube.git] /
1 package org.sonar.tests;
2
3 public class Hello {
4   private String hello;
5   
6   public Hello(String s){
7     this.hello = s;
8   }
9   
10   public String say() {
11         return hello;
12   }
13   
14   protected int notCalled() {
15     int i=0;
16     i++;
17     return i+3; 
18   }
19 }