mirror of https://github.com/apache/jclouds.git
JCLOUDS-40 Remove last reference to AsyncBlobStore in GCS.
This commit is contained in:
parent
2c412dc309
commit
ecc4e67347
|
@ -18,10 +18,8 @@ package org.jclouds.googlecloudstorage.blobstore.config;
|
|||
|
||||
import com.google.inject.AbstractModule;
|
||||
import com.google.inject.Scopes;
|
||||
import org.jclouds.blobstore.AsyncBlobStore;
|
||||
import org.jclouds.blobstore.BlobStore;
|
||||
import org.jclouds.blobstore.attr.ConsistencyModel;
|
||||
import org.jclouds.blobstore.internal.SubmissionAsyncBlobStore;
|
||||
import org.jclouds.googlecloudstorage.blobstore.GCSBlobStore;
|
||||
|
||||
public class GCSBlobStoreContextModule extends AbstractModule {
|
||||
|
@ -30,6 +28,5 @@ public class GCSBlobStoreContextModule extends AbstractModule {
|
|||
protected void configure() {
|
||||
bind(ConsistencyModel.class).toInstance(ConsistencyModel.EVENTUAL);
|
||||
bind(BlobStore.class).to(GCSBlobStore.class).in(Scopes.SINGLETON);
|
||||
bind(AsyncBlobStore.class).to(SubmissionAsyncBlobStore.class).in(Scopes.SINGLETON);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue