> +
> + 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());
> + }
> +
> +}
Grrr formatter...
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6251994