10 lines
216 B
Plaintext
10 lines
216 B
Plaintext
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));
|
|
}
|
|
}
|