Skip to content

Commit

Permalink
Declare JdkDynamicAopProxy's ProxiedInterfacesCache as private
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Dec 31, 2023
1 parent b417437 commit fdb454b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ private void readObject(ObjectInputStream ois) throws IOException, ClassNotFound
* to be cached in {@link AdvisedSupport#proxyMetadataCache}.
* @since 6.1.3
*/
static final class ProxiedInterfacesCache {
private static final class ProxiedInterfacesCache {

final Class<?>[] proxiedInterfaces;

Expand Down

0 comments on commit fdb454b

Please sign in to comment.