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: b7a2f0a4b5cb35cbda8d0f877a3ba572a81adc72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test0466;

public class Assert {
	public static final void notNull(Object ref, String message)
	{
		assert ref != null : message;
	}
	
	void method(String param1, String param2, String param3)
	{
		Assert.notNull(param1, "param1 != null");
		Assert.notNull(param2, "param2 != null");
		Assert.notNull(param3, "param3 != null");
	}
}

Back to the top