> +
> +   public static class Builder {
> +      private String type;
> +
> +      public Builder type(String type) {
> +         this.type = type;
> +         return this;
> +      }
> +
> +      public Action build() {
> +         return new Action(this.type);
> +      }
> +
> +      public Builder fromAction(Action in) {
> +         return this.type(in.getType());
> +

[minor] Remove blank line

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14528567

Reply via email to