merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
Showing only changes of commit a09211da5f - Show all commits

View File

@@ -16,7 +16,7 @@ public abstract class PowerCard {
* Create PowerCard attributes. * Create PowerCard attributes.
*/ */
private final UUID uuid = UUID.randomUUID(); private final UUID uuid = UUID.randomUUID();
private final BonusCard card; protected BonusCard card;
/** /**
* Constructor. * Constructor.
@@ -25,15 +25,6 @@ public PowerCard() {
this.card = BonusCard.HIDDEN; this.card = BonusCard.HIDDEN;
} }
/**
* Constructor.
*
* @param card as the card type of this PowerCard class as BonusCard enumeration.
*/
public PowerCard(BonusCard card) {
this.card = card;
}
/** /**
* This method will be used to call the visit method of the given visitor parameter and pass a PowerCard object. * This method will be used to call the visit method of the given visitor parameter and pass a PowerCard object.
* *