You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Service.java 176B

1234567
  1. public class Service implements IService {
  2. public void method(long l) throws Exception {
  3. System.err.println("Original impl of service method, arg " + l);
  4. }
  5. }