> +
> +   protected ToStringHelper string() {
> +      return Objects.toStringHelper(this)
> +            .add("transactionId", transactionId).add("timestamp", 
> timestamp).add("metadata", metadata);
> +   }
> +   
> +   @Override
> +   public int compareTo(SwiftResource that) {
> +      if (that == null)
> +         return 1;
> +      if (this == that)
> +         return 0;
> +      return this.getTransactionId().compareTo(that.getTransactionId());
> +   }
> +
> +}

New line

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r5431799

Reply via email to