blob: 5b23b00e7dc15c019bac9177c79b72ccd7dce465 (
plain)
1
2
3
4
5
6
7
8
9
|
public class with sharing Trigger {
@Deprecated
public void resolveSum(int x, int y) {
System.debug('x is ' + x);
System.debug('y is ' + y);
System.debug('x + y = ' + (x+y));
}
}
|