Skip to content

Commit f202c0d

Browse files
committed
dfdfdfd
1 parent c49efe7 commit f202c0d

File tree

2 files changed

+0
-25
lines changed

2 files changed

+0
-25
lines changed

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/ShawnDunsmore/SlotMachine.java

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -30,41 +30,21 @@ public int getNumOfSlots() {
3030
return numOfSlots;
3131
}
3232

33-
// public void setNumOfSlots(int numOfSlots) {
34-
// this.numOfSlots = numOfSlots;
35-
// }
36-
3733
public int getPayAmount() {
3834
return payAmount;
3935
}
40-
41-
// public void setPayAmount(int payAmount) {
42-
// this.payAmount = payAmount;
43-
// }
44-
4536
public String getName() {
4637
return name;
4738
}
4839

49-
// public void setName(String name) {
50-
// this.name = name;
51-
// }
52-
5340
public BuyType getBuyType() {
5441
return buyType;
5542
}
5643

57-
// public void setBuyType(BuyType buyType) {
58-
// this.buyType = buyType;
59-
// }
60-
6144
public ArrayList<String> getIconList() {
6245
return iconList;
6346
}
6447

65-
// public void setIconList(ArrayList<String> iconList) {
66-
// this.iconList = iconList;
67-
// }
6848

6949
public int payOut() {
7050
if (buyType.equals(BuyType.DOUBLE_CHANCE)) {
@@ -99,8 +79,4 @@ public ArrayList<String> spin(int money, int numOfSpins) throws InvalidPayAmount
9979
public int getMoneyNeeded() {
10080
return moneyNeeded;
10181
}
102-
103-
// public void setMoneyNeeded(int moneyNeeded) {
104-
// this.moneyNeeded = moneyNeeded;
105-
// }
10682
}

lesson_16/objects/objects_app/src/test/java/com/codedifferently/lesson16/Lesson16Test.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package com.codedifferently.lesson16;
22

33
import static org.assertj.core.api.Assertions.assertThat;
4-
54
import org.junit.jupiter.api.Test;
65
import org.springframework.boot.test.context.SpringBootTest;
76

0 commit comments

Comments
 (0)