mirror of https://github.com/apache/jclouds.git
Merge pull request #655 from hhrasna/patch-1
Don't throw NPE if EC2 image architecture is null
This commit is contained in:
commit
5ce29e0931
|
@ -78,7 +78,7 @@ public class Image implements Comparable<Image> {
|
||||||
@Nullable String ramdiskId, RootDeviceType rootDeviceType, @Nullable String rootDeviceName,
|
@Nullable String ramdiskId, RootDeviceType rootDeviceType, @Nullable String rootDeviceName,
|
||||||
Map<String, EbsBlockDevice> ebsBlockDevices, VirtualizationType virtualizationType, Hypervisor hypervisor) {
|
Map<String, EbsBlockDevice> ebsBlockDevices, VirtualizationType virtualizationType, Hypervisor hypervisor) {
|
||||||
this.region = checkNotNull(region, "region");
|
this.region = checkNotNull(region, "region");
|
||||||
this.architecture = checkNotNull(architecture, "architecture");
|
this.architecture = architecture;
|
||||||
this.imageId = checkNotNull(imageId, "imageId");
|
this.imageId = checkNotNull(imageId, "imageId");
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.description = description;
|
this.description = description;
|
||||||
|
|
Loading…
Reference in New Issue