Skip to content

Commit

Permalink
Removing name, that is not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
luk-kaminski committed Feb 10, 2025
1 parent 315f4c6 commit 4a0c35b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ protected void configure() {
registerJacksonSubtype(EventList.class);

//search type results
registerJacksonSubtype(PivotResult.class, Pivot.NAME);
registerJacksonSubtype(MessageList.Result.class, MessageList.NAME);
registerJacksonSubtype(EventList.Result.class, EventList.NAME);
registerJacksonSubtype(PivotResult.class);
registerJacksonSubtype(MessageList.Result.class);
registerJacksonSubtype(EventList.Result.class);

// pivot specs
registerJacksonSubtype(Values.class);
Expand Down

0 comments on commit 4a0c35b

Please sign in to comment.