mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 08:37:26 +08:00
Revert "性能优化--Array.equals()方法会判断注解的顺序,如果子类重写了父类的注解,虽然两者数组内部元素一样的,但是由于顺序不一样,这里会返回false,额外走了else的逻辑。 二者只会存在注解数组元素多或者少或者顺序不一致的情况,不会存在长度相同而元素不一致的情况。因此只用判断二者长度是否相等即可"
This reverts commit 58e2f4b02f
.
This commit is contained in:
parent
58e2f4b02f
commit
3fc7937f9a
@ -103,7 +103,7 @@ public class CombinationAnnotationElement implements AnnotatedElement, Serializa
|
||||
parseDeclared(declaredAnnotations);
|
||||
|
||||
final Annotation[] annotations = element.getAnnotations();
|
||||
if (declaredAnnotations.length == annotations.length) {
|
||||
if (Arrays.equals(declaredAnnotations, annotations)) {
|
||||
this.annotationMap = this.declaredAnnotationMap;
|
||||
} else {
|
||||
this.annotationMap = new TableMap<>();
|
||||
|
Loading…
Reference in New Issue
Block a user