Declare JdkDynamicAopProxy's ProxiedInterfacesCache as private

See gh-30499
This commit is contained in:
Juergen Hoeller 2023-12-31 13:48:50 +01:00
parent b4174377c2
commit fdb454b9a4
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public class AdvisedSupport extends ProxyConfig implements Advised {
/**
* Optional field for {@link AopProxy} implementations to store metadata in.
* Used for {@link JdkDynamicAopProxy.ProxiedInterfacesCache}.
* Used by {@link JdkDynamicAopProxy}.
* @since 6.1.3
* @see JdkDynamicAopProxy#JdkDynamicAopProxy(AdvisedSupport)
*/

View File

@ -314,7 +314,7 @@ final class JdkDynamicAopProxy implements AopProxy, InvocationHandler, Serializa
* to be cached in {@link AdvisedSupport#proxyMetadataCache}.
* @since 6.1.3
*/
static final class ProxiedInterfacesCache {
private static final class ProxiedInterfacesCache {
final Class<?>[] proxiedInterfaces;