]> source.dussan.org Git - sonarqube.git/blob
cb543d85ed1268f5309a4689fe59db9b74f8d613
[sonarqube.git] /
1 package com.test;
2
3 import java.io.PrintWriter;
4
5 /**
6  * Commented Code
7  */
8 public class CommentedCode {
9
10     public void test(PrintWriter pw) {
11       System.out.println("this code is not commented");
12     }
13     
14     //public void test1(PrintWriter pw) {
15     //    System.out.println("this code seems to be commented");
16     //}
17     
18     /*public void test1(PrintWriter pw) {
19         System.out.println("this code seems also to be commented");
20     }*/
21     
22     /**
23      * public boolean test2(PrintWriter pw) {
24      *   System.out.println("this code is not considered as commented");
25      *   return true;
26      * }
27      */
28 }