Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Alignment correction
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangerCoug committed Oct 7, 2023
1 parent c19402a commit 579daea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions FreeCasino.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="fb75f374-c504-4c41-b18d-1b8be6ee6e86" />
</component>
</module>
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void shuffleDeck() {
for (int i = cards.size() - 1; i > 0; i--) {
Card temp = cards.get(i);
int j = rng.nextInt(i + 1); /* Without the +1 this becomes a Sattolo
* shuffle, which we don't want */
* shuffle, which we don't want */
cards.set(i, cards.get(j));
cards.set(j, temp);
}
Expand Down

0 comments on commit 579daea

Please sign in to comment.