Fix compilation of enum constructor in templates

This commit is contained in:
AB 2025-05-09 14:26:45 +02:00
parent f7c6338e0c
commit 5f0f974f66
No known key found for this signature in database
GPG Key ID: D5BCEF380182CD94
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public class ApiClient{{#jsr310}} extends JavaTimeFormatter{{/jsr310}} {
protected final String separator;
protected CollectionFormat(String separator) {
CollectionFormat(String separator) {
this.separator = separator;
}

View File

@ -90,7 +90,7 @@ public class ApiClient{{#jsr310}} extends JavaTimeFormatter{{/jsr310}} {
CSV(","), TSV("\t"), SSV(" "), PIPES("|"), MULTI(null);
protected final String separator;
protected CollectionFormat(String separator) {
CollectionFormat(String separator) {
this.separator = separator;
}