Skip to content

Commit

Permalink
feat(map): update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-casey committed Oct 10, 2023
1 parent c4b231b commit f5f9918
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions test/codegen/__snapshots__/codegen.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -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<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 @@ -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<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 f5f9918

Please sign in to comment.