Skip to main content
summaryrefslogtreecommitdiffstats
blob: 029f99b7c4c9c6a4b94eceedbdb5618d24ee114e (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(i, 0);
	}

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

Back to the top