Updated PMD rules.

This commit is contained in:
Erik C. Thauvin 2021-05-29 22:01:18 -07:00
parent e873d01338
commit 3f628e58f0
4 changed files with 90 additions and 243 deletions

View file

@ -52,10 +52,10 @@ public final class War extends AbstractModule {
// War command
private static final String WAR_CMD = "war";
// Deck of card
private static final String[] WAR_DECK =
new String[]{"Ace", "King", "Queen", "Jack", "10", "9", "8", "7", "6", "5", "4", "3", "2"};
private static final String[] WAR_DECK =
{"Ace", "King", "Queen", "Jack", "10", "9", "8", "7", "6", "5", "4", "3", "2"};
// Suits for the deck of card
private static final String[] WAR_SUITS = new String[]{"Hearts", "Spades", "Diamonds", "Clubs"};
private static final String[] WAR_SUITS = {"Hearts", "Spades", "Diamonds", "Clubs"};
/**
* The default constructor.