Merge pull request #1618 from hapifhir/do-20240509-fix-clicontext-fields
Fix duplicate txServer getters and setters
This commit is contained in:
commit
ee5987a301
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue