> @@ -85,6 +86,7 @@ public static Status fromValue(String v) {
> protected int minDisk;
> protected int minRam;
> protected Resource server;
> + protected List<BlockDeviceMapping> blockDeviceMapping;
This should be initialized with `ImmutableList.of()` (unless there's a really
good reason not to). All of the other Collection types in the domain package
are initialized this way. `blockDeviceMapping` should be the same.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/626/files#r23227753