aboutsummaryrefslogtreecommitdiffstats
path: root/it/it-projects/qualitygate/xoo-sample/src/sample/Sample2.xoo
blob: 6c1b6459c344778cca6df6e00f969e5e6d11d025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package sample;

public class Sample {
	
	public Sample(int i) {
		int j = i++;
	}
	
	private String myMethod2() {
		return "hello";
	}
}