Skip to content

Commit

Permalink
break on up supported annotation
Browse files Browse the repository at this point in the history
Co-authored-by: Keith Wall <[email protected]>
Signed-off-by: Sam Barker <[email protected]>
  • Loading branch information
SamBarker and k-wall authored Oct 2, 2023
1 parent 0821d12 commit 1b9e55a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,7 @@ private static boolean hasOnlySupportedAnnotations(AnnotatedElement parameter) {
final String canonicalName = annotation.annotationType().getCanonicalName();
if (!canonicalName.startsWith("io.kroxylicious") && !canonicalName.startsWith("org.junit")) {
supported = false;
break;
}
}
return supported;
Expand Down

0 comments on commit 1b9e55a

Please sign in to comment.