mirror of https://github.com/apache/jclouds.git
allowed image to be null
This commit is contained in:
parent
83393f1315
commit
3799ce0a48
|
@ -20,7 +20,6 @@
|
||||||
package org.jclouds.aws.ec2.compute.strategy;
|
package org.jclouds.aws.ec2.compute.strategy;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkArgument;
|
import static com.google.common.base.Preconditions.checkArgument;
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
|
||||||
|
|
||||||
import javax.inject.Singleton;
|
import javax.inject.Singleton;
|
||||||
|
|
||||||
|
@ -37,7 +36,6 @@ public class EC2PopulateDefaultLoginCredentialsForImageStrategy implements
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Credentials execute(Object resourceToAuthenticate) {
|
public Credentials execute(Object resourceToAuthenticate) {
|
||||||
checkNotNull(resourceToAuthenticate);
|
|
||||||
checkArgument(resourceToAuthenticate instanceof Image, "Resource must be an image (for EC2)");
|
checkArgument(resourceToAuthenticate instanceof Image, "Resource must be an image (for EC2)");
|
||||||
Image image = (Image) resourceToAuthenticate;
|
Image image = (Image) resourceToAuthenticate;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue