Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: d70163afb3975b1576a7c484ea59a3767177b132 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class A {
	
	/**
	 * 
	 * 
	 */
	void foo(long l, int i, String s, Object o) throws IOException {
		/* if condition */
		if (condition1 && condition2) {
			System.out.println(4);
		}
	}
}

Back to the top