diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5f43d60 Binary files /dev/null and b/.DS_Store differ diff --git a/bin/.gitignore b/bin/.gitignore index 66b02ab..66905d0 100644 --- a/bin/.gitignore +++ b/bin/.gitignore @@ -1,3 +1,4 @@ +/.DS_Store +/controller/ /model/ /view/ -/controller/ diff --git a/bin/controller/Cashflow.class b/bin/controller/Cashflow.class index bf36558..37ff42f 100644 Binary files a/bin/controller/Cashflow.class and b/bin/controller/Cashflow.class differ diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 0000000..6c20a58 Binary files /dev/null and b/src/.DS_Store differ diff --git a/src/controller/Cashflow.java b/src/controller/Cashflow.java index 08160b7..1d75f68 100644 --- a/src/controller/Cashflow.java +++ b/src/controller/Cashflow.java @@ -21,7 +21,7 @@ public class Cashflow for(int i=0; i // Randomizes the stack with the cards in the array argument public void randomizeCards(Card[] cardArray) { - //CardStack cardStack = new CardStack(); + // CardStack cardStack = new CardStack(); ArrayList cardList = new ArrayList(); Random r = new Random(); diff --git a/src/model/GameBoard.java b/src/model/GameBoard.java index 85eade4..fb0b7c3 100644 --- a/src/model/GameBoard.java +++ b/src/model/GameBoard.java @@ -4,5 +4,5 @@ public class GameBoard { private Tile[] _gameTiles; - // This class should have an array of tiles that goes back to the beginning when it eaches the end + // This class should have an array of tiles that goes back to the beginning when it reaches the end }