Skip to content

Commit

Permalink
Add default implementation for TrafficConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
bertrik committed Jan 26, 2024
1 parent 3e38669 commit 2b256db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
final class VerkeersDrukteAppConfig extends Configuration {

@JsonProperty("ndw")
private final NdwConfig ndwConfig = new NdwConfig();
private NdwConfig ndwConfig = new NdwConfig();
@JsonProperty("traffic")
private TrafficConfig trafficConfig;
private TrafficConfig trafficConfig = new TrafficConfig();

public NdwConfig getNdwConfig() {
return ndwConfig;
Expand Down

0 comments on commit 2b256db

Please sign in to comment.