aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-squid-java-plugin/test-resources/metrics/commentedCode/CommentedCode.java
blob: 7fa37a2e113b397acd40af9e22e4f750ebabb5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public class CommentedCode {
	
	
	public CommentedCode(){
		//This is a comment
		//if (true) {
		int i = 2;
	}
	
	/**
	 * No detection of commented code line in Javadoc bloc
	 * 
	 * public void main(){
	 * 	
	 * }
	 */
	public void analyse(){
		/*
		for(Visitor visitor : visitors){
			visitor.scan(line);
		}
		*/
		
	}
}