> return new AutoValue_ComposeObjectTemplate(sourceObjects, destination);
> }
> +
> + ComposeObjectTemplate() {
> + }
> +
> + public static class Builder {
> + private ImmutableList<SourceObject> sourceObjects;
> + private ObjectTemplate destination;
> +
> + public Builder(){
> + }
> +
> + public Builder
> fromGoogleCloudStorageObject(List<GoogleCloudStorageObject> objects){
> + ArrayList<SourceObject> sourceObjects = new
> ArrayList<SourceObject>();
> + for (GoogleCloudStorageObject obj : objects){
Space before brace?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/150/files#r32684927