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: 9692c7f30f0a7962bc65421089bf8ae488ae56e9 (plain) (blame)
1
2
3
4
5
6
7
8
public class SomeClass {
	public void foo() {
		if ((x.getSomeLongValue == 100) 
		    || (x.getSomeOtherValue == 200)) {
			y = 5;
		}
	}
}

Back to the top