Address Checkstyle violations

This commit is contained in:
Andrew Gaul 2013-10-22 16:44:34 -07:00
parent fb11c1fc1a
commit ac5559ca9e
4 changed files with 5 additions and 5 deletions

View File

@ -102,7 +102,7 @@ public class VolumeQuota {
return new ConcreteBuilder().fromVolumeQuota(this);
}
public static abstract class Builder<T extends Builder<T>> {
public abstract static class Builder<T extends Builder<T>> {
protected abstract T self();
protected String id;
@ -164,4 +164,4 @@ public class VolumeQuota {
return this;
}
}
}
}

View File

@ -52,7 +52,7 @@ public class RetryOnRenew implements HttpRetryHandler {
protected Logger logger = Logger.NULL;
@VisibleForTesting
final static int NUM_RETRIES = 5;
static final int NUM_RETRIES = 5;
private final LoadingCache<Credentials, Access> authenticationResponseCache;

View File

@ -37,4 +37,4 @@ public interface AvailabilityZoneAPI {
*/
FluentIterable<? extends AvailabilityZone> list();
}
}

View File

@ -55,4 +55,4 @@ public interface AvailabilityZoneAsyncApi {
@Fallback(Fallbacks.EmptyFluentIterableOnNotFoundOr404.class)
ListenableFuture<? extends FluentIterable<? extends AvailabilityZone>> list();
}
}