>           toString.add("loginPasswordPresent", true);
> -      if (loginPrivateKey != null)
> +      if (loginPrivateKey != null && loginPrivateKey.isPresent())

[minor] Add always to the toString if not null?
```java
toString.add("loginPrivateKeyPresent", loginPrivateKey.isPresent());
```

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/907/files#r51109590

Reply via email to