Skip to content

Commit

Permalink
make getIdentifikators public
Browse files Browse the repository at this point in the history
  • Loading branch information
hknots committed Nov 12, 2024
1 parent f93b81f commit e178e5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generate/java/java_class_tpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public {{- if .Abstract }} abstract {{- end }} class {{ .Name }} {{ if .Extends
{{- if .Identifiable }}
@JsonIgnore
@Override
private Map<String, FintIdentifikator> getIdentifikators() {
public Map<String, FintIdentifikator> getIdentifikators() {
Map<String, FintIdentifikator> identifikators = new HashMap<>();
{{- if .ExtendsIdentifiable}}
Expand Down
2 changes: 1 addition & 1 deletion generate/java/java_resource_class_tpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public {{- if .Abstract }} abstract {{- end }} class {{ .Name }}Resource {{ if .
{{- if .Identifiable }}
@JsonIgnore
@Override
private Map<String, FintIdentifikator> getIdentifikators() {
public Map<String, FintIdentifikator> getIdentifikators() {
Map<String, FintIdentifikator> identifikators = new HashMap<>();
{{- if .ExtendsIdentifiable}}
Expand Down

0 comments on commit e178e5f

Please sign in to comment.