aboutsummaryrefslogtreecommitdiffstats
path: root/it/it-projects/batch/xoo-sample-with-spaces/v2/my sources/main/xoo/sample/My Sample.xoo
blob: 8c91df8b6cffa4dcbbfb7ef21364ebed8c65c507 (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 myMethod_modified() {
		return "hello";
	}
}