Skip to content

Commit 1af21bb

Browse files
committed
Declare serialVersionUID on DefaultAopProxyFactory
Closes gh-27784
1 parent ac581be commit 1af21bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-aop/src/main/java/org/springframework/aop/framework/DefaultAopProxyFactory.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@
4545
* @see AdvisedSupport#setProxyTargetClass
4646
* @see AdvisedSupport#setInterfaces
4747
*/
48-
@SuppressWarnings("serial")
4948
public class DefaultAopProxyFactory implements AopProxyFactory, Serializable {
5049

50+
private static final long serialVersionUID = 7930414337282325166L;
51+
5152

5253
@Override
5354
public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException {

0 commit comments

Comments
 (0)