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
This commit is contained in:
Stephane Nicoll 2015-05-22 10:21:23 +02:00
parent 4549d76fbe
commit 39b2fbbccf
1 changed files with 1 additions and 1 deletions

View File

@ -24,5 +24,5 @@ package org.springframework.core.annotation;
* @author Sam Brannen
* @since 4.2
*/
interface SynthesizedAnnotation {
public interface SynthesizedAnnotation {
}