Revert "性能优化--Array.equals()方法会判断注解的顺序,如果子类重写了父类的注解,虽然两者数组内部元素一样的,但是由于顺序不一样,这里会返回false,额外走了else的逻辑。 二者只会存在注解数组元素多或者少或者顺序不一致的情况,不会存在长度相同而元素不一致的情况。因此只用判断二者长度是否相等即可"

This reverts commit 58e2f4b02f.
This commit is contained in:
会飞的行李 2025-03-21 00:12:02 +08:00
parent 58e2f4b02f
commit 3fc7937f9a

View File

@ -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<>();