diff --git a/test/codegen/__snapshots__/codegen.js.snap b/test/codegen/__snapshots__/codegen.js.snap index b761ade7..4f77a558 100644 --- a/test/codegen/__snapshots__/codegen.js.snap +++ b/test/codegen/__snapshots__/codegen.js.snap @@ -905,12 +905,12 @@ public class Address extends Concept { private State state; private String zipCode; private String country; - private Map1 dictionary1; - private Map2 dictionary2; - private Map3 dictionary3; - private Map4 dictionary4; - private Map5 dictionary5; - private Map6 dictionary6; + private Map dictionary1 = new HashMap<>(); + private Map dictionary2 = new HashMap<>(); + private Map dictionary3 = new HashMap<>(); + private Map dictionary4 = new HashMap<>(); + private Map dictionary5 = new HashMap<>(); + private Map dictionary6 = new HashMap<>(); public String getStreet() { return this.street; } @@ -6037,12 +6037,12 @@ public class Address extends Concept { private State state; private String zipCode; private String country; - private Map1 dictionary1; - private Map2 dictionary2; - private Map3 dictionary3; - private Map4 dictionary4; - private Map5 dictionary5; - private Map6 dictionary6; + private Map dictionary1 = new HashMap<>(); + private Map dictionary2 = new HashMap<>(); + private Map dictionary3 = new HashMap<>(); + private Map dictionary4 = new HashMap<>(); + private Map dictionary5 = new HashMap<>(); + private Map dictionary6 = new HashMap<>(); public String getStreet() { return this.street; }