Skip to content

Commit

Permalink
endpoints - Provided test reproducing issue on annotation processing …
Browse files Browse the repository at this point in the history
…error when using a parameterized class in annotations value
  • Loading branch information
fcamblor committed Feb 10, 2018
1 parent 0e201fd commit b717a76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
// Complex types // Complex types
String aString(); String aString();
Class aClass(); Class aClass();
Class<? extends Number> aParameterizedTypeClass();
MyEnum anEnum(); MyEnum anEnum();


// Another annotation // Another annotation
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public String deleteHello(String who) {
// Complex types // Complex types
aString="AAA{\\\"'$AA", aString="AAA{\\\"'$AA",
aClass=CoreResource.class, aClass=CoreResource.class,
aParameterizedTypeClass=Long.class,
anEnum=MyEnum.A, anEnum=MyEnum.A,


// Another annotation // Another annotation
Expand Down

0 comments on commit b717a76

Please sign in to comment.