Skip to content

Commit fdb454b

Browse files
committed
Declare JdkDynamicAopProxy's ProxiedInterfacesCache as private
See gh-30499
1 parent b417437 commit fdb454b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: spring-aop/src/main/java/org/springframework/aop/framework/AdvisedSupport.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public class AdvisedSupport extends ProxyConfig implements Advised {
112112

113113
/**
114114
* Optional field for {@link AopProxy} implementations to store metadata in.
115-
* Used for {@link JdkDynamicAopProxy.ProxiedInterfacesCache}.
115+
* Used by {@link JdkDynamicAopProxy}.
116116
* @since 6.1.3
117117
* @see JdkDynamicAopProxy#JdkDynamicAopProxy(AdvisedSupport)
118118
*/

Diff for: spring-aop/src/main/java/org/springframework/aop/framework/JdkDynamicAopProxy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ private void readObject(ObjectInputStream ois) throws IOException, ClassNotFound
314314
* to be cached in {@link AdvisedSupport#proxyMetadataCache}.
315315
* @since 6.1.3
316316
*/
317-
static final class ProxiedInterfacesCache {
317+
private static final class ProxiedInterfacesCache {
318318

319319
final Class<?>[] proxiedInterfaces;
320320

0 commit comments

Comments
 (0)