> +public class CloudSigma2HttpApiModule extends HttpApiModule<CloudSigma2Api> {
> +
> +    @Override
> +    protected void bindErrorHandlers() {
> +        
> bind(HttpErrorHandler.class).annotatedWith(Redirection.class).to(CloudSigmaErrorHandler.class);
> +        
> bind(HttpErrorHandler.class).annotatedWith(ClientError.class).to(CloudSigmaErrorHandler.class);
> +        
> bind(HttpErrorHandler.class).annotatedWith(ServerError.class).to(CloudSigmaErrorHandler.class);
> +    }
> +
> +    @Override
> +    protected void configure() {
> +        super.configure();
> +    }
> +
> +    @Override
> +    protected void bindRetryHandlers() {

Can we remove this method if there is nothing to override?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/12/files#r6053987

Reply via email to