> @@ -62,12 +62,12 @@ public ServerInfo apply(Map<String, String> from) {
> if (from.containsKey("status"))
> builder.status(ServerStatus.fromValue(from.get("status")));
> if (from.containsKey("smp") && !"auto".equals(from.get("smp")))
> - builder.smp(Integer.valueOf(from.get("smp")));
> + builder.smp(Integer.parseInt(from.get("smp")));
`builder.smp` takes an Integer rather than an int, so stick with `valueOf`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/498/files#r16813367