Skip to content

Commit

Permalink
Change default behavior of RegisterForReflection ignoreNested attribu…
Browse files Browse the repository at this point in the history
…te to false.
  • Loading branch information
humcqc committed Feb 9, 2024
1 parent a57ed89 commit d2022c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void build(CombinedIndexBuildItem combinedIndexBuildItem, Capabilities ca

boolean methods = getBooleanValue(i, "methods");
boolean fields = getBooleanValue(i, "fields");
boolean ignoreNested = getBooleanValue(i, "ignoreNested");
boolean ignoreNested = i.value("ignoreNested") != null && i.value("ignoreNested").asBoolean();
boolean serialization = i.value("serialization") != null && i.value("serialization").asBoolean();
boolean unsafeAllocated = i.value("unsafeAllocated") != null && i.value("unsafeAllocated").asBoolean();

Expand Down

0 comments on commit d2022c2

Please sign in to comment.