> +/**
> + * @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>> {
I see what you mean. Within this package we should keep things consistent.
Leave it as is.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/178/files#r6974854