Skip to content

Commit

Permalink
perf(kit): #412
Browse files Browse the repository at this point in the history
  • Loading branch information
iohao committed Dec 14, 2024
1 parent 233bc98 commit ba2edec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private List<Method> listMethod() {
for (Method method : declaredMethods) {
int modifiers = method.getModifiers();
// 静态的字段不需要
if (Modifier.isStatic(modifiers)) {
if (Modifier.isStatic(modifiers) || method.isBridge()) {
continue;
}
methodList.add(method);
Expand Down

0 comments on commit ba2edec

Please sign in to comment.