mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 06:14:45 +00:00
fix npe
This commit is contained in:
parent
f60f377a66
commit
5ec1bd9f67
@ -71,7 +71,7 @@ public class ToolGlobalSettings {
|
||||
|
||||
public static boolean isNoNetwork() {
|
||||
init();
|
||||
return noNetwork;
|
||||
return noNetwork == null ? false : noNetwork;
|
||||
}
|
||||
|
||||
public static void setNoNetwork(boolean value) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user