Merge pull request #53 from ClaytonWWilson/APIUnitTests

Clean up double toStrings
This commit is contained in:
Nathan Merz 2020-10-08 21:28:54 -04:00 committed by GitHub
commit 22a39c7ed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,17 +34,6 @@ public class ItemEntry {
this.listID = listID;
}
@Override
public String toString() {
return "ItemEntry{" +
"listID=" + listID +
", productID=" + productID +
", quantity=" + quantity +
", addedDate=" + addedDate +
", purchased=" + purchased +
'}';
}
public Integer getProductID() {
return productID;
}