Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
endpoints - Provided test reproducing issue where annotation returns …
…an array of parameterized types
  • Loading branch information
fcamblor committed Feb 10, 2018
1 parent 2ea9752 commit 1ae6b58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -33,6 +33,7 @@

String[] severalStrings();
Class[] severalClasses();
Class<? extends Number>[] severalParameterizedTypeClasses();
MyEnum[] severalEnums();

MyNestedAnnotation[] severalAnnotations();
Expand Down
Expand Up @@ -91,6 +91,7 @@ public String deleteHello(String who) {

severalStrings={ "AAA{\\\"'$AA", "BBB", "CCC" },
severalClasses={ Integer.class, String.class },
severalParameterizedTypeClasses={ Integer.class, Short.class },
severalEnums={ MyEnum.A, MyEnum.B },

// Not supported (yet)
Expand Down

0 comments on commit 1ae6b58

Please sign in to comment.