Merge pull request #1618 from hapifhir/do-20240509-fix-clicontext-fields

Fix duplicate txServer getters and setters
This commit is contained in:
Grahame Grieve 2024-05-09 22:59:31 +00:00 committed by GitHub
commit ee5987a301
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -247,12 +247,12 @@ public class CliContext {
return this;
}
@JsonProperty("txServer")
@JsonProperty("noEcosystem")
public boolean getNoEcosystem() {
return noEcosystem;
}
@JsonProperty("txServer")
@JsonProperty("noEcosystem")
public CliContext setNoEcosystem(boolean noEcosystem) {
this.noEcosystem = noEcosystem;
return this;