> + */ > +package org.jclouds.azureblob.binders; > + > +import static com.google.common.base.Preconditions.checkArgument; > +import static com.google.common.base.Preconditions.checkNotNull; > + > +import javax.inject.Inject; > +import javax.inject.Singleton; > + > +import org.jclouds.azureblob.blobstore.functions.AzureBlobToBlob; > +import org.jclouds.azureblob.domain.AzureBlob; > +import org.jclouds.blobstore.binders.BindUserMetadataToHeadersWithPrefix; > +import org.jclouds.http.HttpRequest; > +import org.jclouds.rest.Binder; > + > +@Singleton
Do we really this to be singleton? (Is its use that common?) Or can just we ask Guice to instantiate it when the method is called? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/628/files#r22191412
