]> source.dussan.org Git - sonarqube.git/blob
7485274aad7f335ba5cdc18cb5858032dbbd9cb4
[sonarqube.git] /
1 package org.sonar.tests;
2
3 public class Hello {
4   
5   private String hello;
6   private int magicNumber = 50;
7   
8   public Hello(String s) {
9     this.hello = s;
10   }
11   
12   private void say() {
13         System.out.println(hello);
14   }
15   
16   public int designForExtensionViolation() {
17     return 3;   
18   }
19   
20   private boolean simplifyBooleanReturn() {
21     if (true) {
22       return true;
23     } else {
24       return false;
25     }
26   }
27 }