> +
> +      /**
> +       * @see TokenCredentials#getId()
> +       */
> +      public T id(String id) {
> +         this.id = id;
> +         return self();
> +      }
> +
> +      public TokenCredentials build() {
> +         return new TokenCredentials(id);
> +      }
> +
> +      public T fromTokenCredentials(TokenCredentials in) {
> +         return this
> +               .id(in.getId());

single line? `return this.id(in.getId());`

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/433/files#r16723954

Reply via email to