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;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonProperty("txServer")
|
@JsonProperty("noEcosystem")
|
||||||
public boolean getNoEcosystem() {
|
public boolean getNoEcosystem() {
|
||||||
return noEcosystem;
|
return noEcosystem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonProperty("txServer")
|
@JsonProperty("noEcosystem")
|
||||||
public CliContext setNoEcosystem(boolean noEcosystem) {
|
public CliContext setNoEcosystem(boolean noEcosystem) {
|
||||||
this.noEcosystem = noEcosystem;
|
this.noEcosystem = noEcosystem;
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in New Issue