From faede00c52eb3b245aa6715a1084bba530919478 Mon Sep 17 00:00:00 2001 From: Jonathan Casey Date: Tue, 10 Oct 2023 13:13:25 +0100 Subject: [PATCH] feat(map): update snapshot Signed-off-by: Jonathan Casey --- test/codegen/__snapshots__/codegen.js.snap | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) 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; }