> + @Override
> + public int hashCode() {
> + int result;
> + long temp;
> + temp = Double.doubleToLongBits(price);
> + result = (int) (temp ^ (temp >>> 32));
> + result = 31 * result + (subscriptions != null ?
> subscriptions.hashCode() : 0);
> + return result;
> + }
> +
> + @Override
> + public String toString() {
> + return "SubscriptionCalculator{" +
> + "price=" + price +
> + ", subscriptions=" + subscriptions +
> + "} " + super.toString();
Why the `super.toString()`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/41/files#r7976403