Skip to content

Commit

Permalink
feat(map): update snapshot
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Casey <[email protected]>
  • Loading branch information
jonathan-casey committed Nov 3, 2023
1 parent d1d9411 commit 2d1a134
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/codegen/__snapshots__/codegen.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,12 @@ public class Address extends Concept {
private State state;
private String zipCode;
private String country;
private Map<String, String> dictionary1 = new HashMap<>();
private Map<String, java.util.Date> dictionary2 = new HashMap<>();
private Map<String, SSN> dictionary3 = new HashMap<>();
private Map<String, Concept> dictionary4 = new HashMap<>();
private Map<SSN, String> dictionary5 = new HashMap<>();
private Map<SSN, Employee> dictionary6 = new HashMap<>();
public String getStreet() {
return this.street;
}
Expand Down Expand Up @@ -6562,6 +6568,12 @@ public class Address extends Concept {
private State state;
private String zipCode;
private String country;
private Map<String, String> dictionary1 = new HashMap<>();
private Map<String, java.util.Date> dictionary2 = new HashMap<>();
private Map<String, SSN> dictionary3 = new HashMap<>();
private Map<String, Concept> dictionary4 = new HashMap<>();
private Map<SSN, String> dictionary5 = new HashMap<>();
private Map<SSN, Employee> dictionary6 = new HashMap<>();
public String getStreet() {
return this.street;
}
Expand Down

0 comments on commit 2d1a134

Please sign in to comment.