From 6d948d03e56f29123b18de5d1f72ccfeafdb364b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Fri, 15 Sep 2023 11:19:51 +0200 Subject: [PATCH] Remove outdated declaration See gh-25933 --- .../factory/aspectj/AnnotationBeanConfigurerAspect.aj | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj b/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj index 923e459b4438..0c7472383dde 100644 --- a/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj +++ b/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj @@ -1,5 +1,5 @@ /* - * Copyright 2002-2020 the original author or authors. + * Copyright 2002-2023 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -85,10 +85,4 @@ public aspect AnnotationBeanConfigurerAspect extends AbstractInterfaceDrivenDepe declare parents: @Configurable * implements ConfigurableObject; - /* - * This declaration shouldn't be needed, - * except for an AspectJ bug (https://bugs.eclipse.org/bugs/show_bug.cgi?id=214559) - */ - declare parents: @Configurable Serializable+ implements ConfigurableDeserializationSupport; - }