> +package org.jclouds.openstack.cinder.v1.domain;
> +
> +import com.google.common.base.Objects;
> +
> +import java.beans.ConstructorProperties;
> +
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +/**
> + * @author Inbar Stolberg
> + * Date: 8/7/13
> + * Time: 11:55 AM
> + */
> +public class VolumeQuota {
> +
> + public static Builder<?> builder() {
Move all Builder code to the bottom of the file. See
https://github.com/jclouds/jclouds-labs-openstack/blob/master/openstack-neutron/src/main/java/org/jclouds/openstack/neutron/v2_0/domain/AllocationPool.java
for an example.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/178/files#r6957306