Skip to main content
summaryrefslogtreecommitdiffstats
blob: 73840a19b6f931b2d34e39142189362907c1e31c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;
class A{
	/**
	 * @deprecated Use {@link #m(int,int)} instead
	 */
	private void m(int i){
		m(0, i);
	}

	private void m(int x, int i){
	}
}

Back to the top