> +import static com.google.common.base.Preconditions.checkNotNull;
> +import static com.google.common.base.Preconditions.checkState;
> +import static
> org.jclouds.compute.config.ComputeServiceProperties.TIMEOUT_IMAGE_AVAILABLE;
> +
> +/**
> + * Docker implementation of {@link
> org.jclouds.compute.extensions.ImageExtension}
> + *
> + * @author Andrea Turli
> + */
> +@Singleton
> +public class DockerImageExtension implements ImageExtension {
> +
> + @Resource
> + @Named(ComputeServiceConstants.COMPUTE_LOGGER)
> + private Logger logger = Logger.NULL;
> + private DockerApi api;
Declare this as `final`.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10838447