Skip to content

Commit

Permalink
Revert "fix build for graalvm native (open-telemetry#11709)"
Browse files Browse the repository at this point in the history
This reverts commit 51cb6f0.
  • Loading branch information
zeitlinger committed Jul 1, 2024
1 parent 668f2e4 commit 5a5ccfb
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ public void registerHints(
.registerType(
TypeReference.of(
"org.springframework.data.mongodb.core.aggregation.AggregationOperation"),
hint -> hint.withMembers(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS))
.registerType(
TypeReference.of("org.apache.kafka.common.serialization.StringDeserializer"),
hint -> hint.withMembers(MemberCategory.INVOKE_PUBLIC_CONSTRUCTORS));
hint -> {
hint.withMembers(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS);
});
}
}

0 comments on commit 5a5ccfb

Please sign in to comment.