aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-squid-java-plugin/test-resources/metrics/javadoc/ClassWithCommentsOnLineOfCode.java
blob: e39c272870bb1be7b7f899472ecdad4ef17f9357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class ClassWithCommentsOnLineOfCode {

    public void run() {
      int i = 5; // comment on line of code, ncloc should not be impacted
      int j = 5; /** test comment 
      tst 2 comment
      **/
      int k = 5; /* another test comment 
      */
    }
    
}