> +import org.jclouds.blobstore.util.BlobUtils;
> +import org.jclouds.jdbc.strategy.JdbcStorageStrategy;
> +
> +import com.google.inject.Inject;
> +
> +/**
> + * Implements the {@link BlobUtils} interfaced and act as a bridge to
> + * {@link LocalStorageStrategy} when used inside {@link BlobStore}
> + */
> +public class JdbcBlobUtils implements BlobUtils {
> +
> + protected final JdbcStorageStrategy storageStrategy;
> + protected final Provider<BlobBuilder> blobBuilders;
> +
> + @Inject
> + public JdbcBlobUtils(LocalStorageStrategy storageStrategy,
> Provider<BlobBuilder> blobBuilders) {
Same here, remove the public modifier and the null checks.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/173/files#r29934510