fix default server settings
This commit is contained in:
parent
fbaff6cdb0
commit
907126703f
|
@ -147,14 +147,14 @@ public class FhirSettings {
|
||||||
public static String getTxFhirDevelopment() {
|
public static String getTxFhirDevelopment() {
|
||||||
getInstance();
|
getInstance();
|
||||||
return instance.fhirSettings.getTxFhirDevelopment() == null
|
return instance.fhirSettings.getTxFhirDevelopment() == null
|
||||||
? FhirSettingsPOJO.TX_SERVER_PROD
|
? FhirSettingsPOJO.TX_SERVER_DEV
|
||||||
: instance.fhirSettings.getTxFhirDevelopment();
|
: instance.fhirSettings.getTxFhirDevelopment();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getTxFhirLocal() {
|
public static String getTxFhirLocal() {
|
||||||
getInstance();
|
getInstance();
|
||||||
return instance.fhirSettings.getTxFhirLocal() == null
|
return instance.fhirSettings.getTxFhirLocal() == null
|
||||||
? FhirSettingsPOJO.TX_SERVER_PROD
|
? FhirSettingsPOJO.TX_SERVER_LOCAL
|
||||||
: instance.fhirSettings.getTxFhirLocal();
|
: instance.fhirSettings.getTxFhirLocal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue