> + * @author Andrew Gaul
> + */
> +public class AtmosServerErrorRetryHandler implements HttpRetryHandler {
> + private final AtmosUtils utils;
> + private final BackoffLimitedRetryHandler backoffHandler;
> +
> + @Inject
> + public AtmosServerErrorRetryHandler(BackoffLimitedRetryHandler
> backoffHandler,
> + AtmosUtils utils) {
> + this.backoffHandler = backoffHandler;
> + this.utils = utils;
> + }
> +
> + @Inject(optional = true)
> + @Named(Constants.PROPERTY_MAX_RETRIES)
> + private int retryCountLimit = 5;
Add a blank line after this, and move below the logger as it's `private`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/285/files#r9651071