Merge "vpn: Fix NPE in VpnConfig#toString when no ProxyInfo is set"

This commit is contained in:
Hugo Benichi
2020-03-09 14:12:06 +00:00
committed by Gerrit Code Review

View File

@@ -232,7 +232,7 @@ public class VpnConfig implements Parcelable {
.append(", allowIPv4=").append(allowIPv4)
.append(", allowIPv6=").append(allowIPv6)
.append(", underlyingNetworks=").append(Arrays.toString(underlyingNetworks))
.append(", proxyInfo=").append(proxyInfo.toString())
.append(", proxyInfo=").append(proxyInfo)
.append("}")
.toString();
}