> +
> +import com.google.inject.Scopes;
> +
> +@ConfiguresHttpApi
> +public class AzureComputeHttpApiModule extends 
> HttpApiModule<AzureComputeApi> {
> +
> +   @Override
> +   protected void bindErrorHandlers() {
> +      
> bind(HttpErrorHandler.class).annotatedWith(Redirection.class).to(AzureComputeErrorHandler.class);
> +      
> bind(HttpErrorHandler.class).annotatedWith(ClientError.class).to(AzureComputeErrorHandler.class);
> +      
> bind(HttpErrorHandler.class).annotatedWith(ServerError.class).to(AzureComputeErrorHandler.class);
> +   }
> +
> +   @Override
> +   protected void installLocations() {
> +      install(new LocationModule());

Better call `super` instead

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/250/files/f7cc1b437f11378e105bba552e3cfee9d7491872#r57576206

Reply via email to