(MetaMethod method, Class instanceKlazz)
| 4089 | } |
| 4090 | |
| 4091 | private static boolean isPrivate(MetaMethod method, Class instanceKlazz) { |
| 4092 | return method.isPrivate() || (method.isPackagePrivate() && !inSamePackage(method.getDeclaringClass().getTheClass(), instanceKlazz)); |
| 4093 | } |
| 4094 | |
| 4095 | /** |
| 4096 | * Returns subclass-scoped meta methods contributed by specialized meta classes. |
no test coverage detected