File tree Expand file tree Collapse file tree
microsphere-java-core/src/main/java/io/microsphere/util Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242import static io .microsphere .lang .function .Streams .filterAll ;
4343import static io .microsphere .lang .function .Streams .filterFirst ;
4444import static io .microsphere .lang .function .ThrowableSupplier .execute ;
45- import static io .microsphere .reflect .MethodUtils .OBJECT_METHODS ;
45+ import static io .microsphere .reflect .MethodUtils .OBJECT_PUBLIC_METHODS ;
4646import static io .microsphere .reflect .MethodUtils .overrides ;
4747import static io .microsphere .util .ArrayUtils .length ;
4848import static io .microsphere .util .ClassLoaderUtils .resolveClass ;
@@ -415,7 +415,7 @@ public static boolean isCallerSensitivePresent() {
415415 private static boolean isInheritedObjectMethod (Method attributeMethod ) {
416416 boolean inherited = false ;
417417
418- for (Method method : OBJECT_METHODS ) {
418+ for (Method method : OBJECT_PUBLIC_METHODS ) {
419419 if (overrides (attributeMethod , method )) {
420420 inherited = true ;
421421 break ;
You can’t perform that action at this time.
0 commit comments