Commit 23180f20 authored by Darrick Yong's avatar Darrick Yong

fix item and dsstore ignore

parent 2e14c1cd
......@@ -3,6 +3,7 @@ target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
.DS_Store
### STS ###
.apt_generated
......
......@@ -20,7 +20,7 @@ public class Item {
public Item() {
}
public Item(String itemId, String itemName, int itemQuantity, double itemPrice, String itemSku) {
public Item(String itemId, String itemName, int itemQuantity, float itemPrice, String itemSku) {
this.itemId = itemId;
this.itemName = itemName;
this.itemQuantity = itemQuantity;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment