Skip to content

Commit

Permalink
fix: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Dec 26, 2024
1 parent 30ef91f commit 808a57a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

import java.util.Map;

import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonProperty;

public record YahooEvents(@JsonAnyGetter @JsonAnySetter Map<Long, YahooEventsDividend> dividends, @JsonAnyGetter @JsonAnySetter Map<Long, YahooEventsSplit> splits) {
public record YahooEvents(@JsonProperty Map<Long, YahooEventsDividend> dividends, @JsonProperty Map<Long, YahooEventsSplit> splits) {

}

0 comments on commit 808a57a

Please sign in to comment.