Declare serialVersionUID on DefaultAopProxyFactory
Closes gh-27784
This commit is contained in:
parent
ac581bed92
commit
1af21bb451
|
@ -45,9 +45,10 @@ import org.springframework.core.NativeDetector;
|
||||||
* @see AdvisedSupport#setProxyTargetClass
|
* @see AdvisedSupport#setProxyTargetClass
|
||||||
* @see AdvisedSupport#setInterfaces
|
* @see AdvisedSupport#setInterfaces
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("serial")
|
|
||||||
public class DefaultAopProxyFactory implements AopProxyFactory, Serializable {
|
public class DefaultAopProxyFactory implements AopProxyFactory, Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 7930414337282325166L;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException {
|
public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException {
|
||||||
|
|
Loading…
Reference in New Issue