removed autoboxing :

Boolean -> boolean
Integer -> int
Float -> float
This commit is contained in:
ingmargoudt 2017-03-11 15:17:14 +01:00
parent 4b5378c423
commit 1f215cdbe3
51 changed files with 110 additions and 110 deletions

View file

@ -38,7 +38,7 @@ import mage.game.permanent.Permanent;
*/
public class TransformedCondition implements Condition {
protected Boolean notCondition;
protected boolean notCondition;
public TransformedCondition() {
this(false);
@ -50,7 +50,7 @@ public class TransformedCondition implements Condition {
* @param notCondition if true the condition is true when the permanent is not transformed
* @return true if the condition is true, false if the condition is false
*/
public TransformedCondition(Boolean notCondition) {
public TransformedCondition(boolean notCondition) {
this.notCondition = notCondition;
}