From 39b2fbbccf154adf511d3c3084087ce2d0b80af4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 22 May 2015 10:21:23 +0200 Subject: [PATCH] Make SynthetizedAnnotation public Enable public visibility on SynthetizedAnnotation to allow annotation outside its package to be proxied properly. This commit is pending a unit test that actually reproduces the problem. Issue: SPR-13057 --- .../springframework/core/annotation/SynthesizedAnnotation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/src/main/java/org/springframework/core/annotation/SynthesizedAnnotation.java b/spring-core/src/main/java/org/springframework/core/annotation/SynthesizedAnnotation.java index b2f082e61b..028c06625e 100644 --- a/spring-core/src/main/java/org/springframework/core/annotation/SynthesizedAnnotation.java +++ b/spring-core/src/main/java/org/springframework/core/annotation/SynthesizedAnnotation.java @@ -24,5 +24,5 @@ package org.springframework.core.annotation; * @author Sam Brannen * @since 4.2 */ -interface SynthesizedAnnotation { +public interface SynthesizedAnnotation { }