Merge pull request #655 from hhrasna/patch-1

Don't throw NPE if EC2 image architecture is null
This commit is contained in:
Adrian Cole 2012-05-30 17:06:14 -07:00
commit 5ce29e0931
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ public class Image implements Comparable<Image> {
@Nullable String ramdiskId, RootDeviceType rootDeviceType, @Nullable String rootDeviceName,
Map<String, EbsBlockDevice> ebsBlockDevices, VirtualizationType virtualizationType, Hypervisor hypervisor) {
this.region = checkNotNull(region, "region");
this.architecture = checkNotNull(architecture, "architecture");
this.architecture = architecture;
this.imageId = checkNotNull(imageId, "imageId");
this.name = name;
this.description = description;