Skip to content

Commit

Permalink
Ignore reflection warnings for built-in Kotlin classes
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Sep 4, 2023
1 parent fea2cef commit fa61f94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static class DefaultIgnoreTypePredicate implements Predicate<DotName> {

private static final List<String> DEFAULT_IGNORED_PACKAGES = Arrays.asList("java.", "io.reactivex.",
"org.reactivestreams.", "org.slf4j.", "jakarta.json.", "jakarta.json.",
"com.fasterxml.jackson.databind.", "io.vertx.core.json.");
"com.fasterxml.jackson.databind.", "io.vertx.core.json.", "kotlin.");
// if this gets more complicated we will need to move to some tree like structure
static final Set<String> ALLOWED_FROM_IGNORED_PACKAGES = new HashSet<>(
Arrays.asList("java.math.BigDecimal", "java.math.BigInteger"));
Expand Down

0 comments on commit fa61f94

Please sign in to comment.