Merge branch 'master' into APIUnitTests

This commit is contained in:
Nathan Merz
2020-10-08 19:10:16 -04:00
committed by GitHub
46 changed files with 1159 additions and 326 deletions

View File

@@ -13,7 +13,7 @@ public class Item {
long retrievedDate;
Integer fetchCounts;
Item(ResultSet itemRow) throws SQLException {
public Item(ResultSet itemRow) throws SQLException {
this.productID = itemRow.getInt(1);
System.out.println(this.productID);
this.chainID = itemRow.getInt(2);