Example #1
0
 private void eagerlyValidateMethods(Class<?> service) {
   Platform platform = Platform.get();
   for (Method method : service.getDeclaredMethods()) {
     if (!platform.isDefaultMethod(method)) {
       loadMethodHandler(method);
     }
   }
 }