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

	private void m(int x){
		m(x);
	}
}

Back to the top