basic/wrapper type guard

This commit is contained in:
Daan Hoogland 2021-04-22 12:16:50 +02:00
parent dad1269c5b
commit 40c53fdc93
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public class UpdateVpnCustomerGatewayCmd extends BaseAsyncCmd {
public Boolean getEncap() { return encap; }
public boolean getSplitConnections() {
return splitConnections;
return null == splitConnections ? false : splitConnections;
}
public String getIkeVersion() {