Issue 158: Updated comment

This commit is contained in:
Jason King 2011-10-03 16:37:53 +01:00
parent b9c6b2766f
commit 5957e1953d
1 changed files with 2 additions and 2 deletions

View File

@ -176,11 +176,11 @@ public class ProductItemPrice implements Comparable<ProductItemPrice> {
return Builder.fromPrice(this);
}
//TODO: Add category and item (may break tests).
//TODO: Add category and item (breaks unit tests that compare toString()).
@Override
public String toString() {
return "[id=" + id + ", itemId=" + itemId + ", recurringFee=" + recurringFee + ", hourlyRecurringFee="
+ hourlyRecurringFee + "]";
+ hourlyRecurringFee + ", item="+item+", categories="+categories+"]";
}
@Override