> +/**
> + * @author Inbar Stolberg
> + * Date: 8/7/13
> + * Time: 11:55 AM
> + */
> +public class VolumeQuota {
> +
> + public static Builder<?> builder() {
> + return new ConcreteBuilder();
> + }
> +
> + public Builder<?> toBuilder() {
> + return new ConcreteBuilder().fromVolumeQuotas(this);
> + }
> +
> + public static abstract class Builder<T extends Builder<T>> {
You should be able to simplify this to `public static class Builder`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/178/files#r6957381