forked from External/mage
fixes and cleanup
This commit is contained in:
parent
304b7404cf
commit
f13c9bc3bb
16 changed files with 75 additions and 35 deletions
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
package mage.abilities.effects;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.abilities.Ability;
|
||||
|
||||
|
|
@ -38,16 +37,13 @@ import mage.abilities.Ability;
|
|||
*/
|
||||
public abstract class EffectImpl<T extends Effect<T>> implements Effect<T> {
|
||||
|
||||
// protected final UUID id;
|
||||
protected final Outcome outcome;
|
||||
|
||||
public EffectImpl(Outcome outcome) {
|
||||
// this.id = UUID.randomUUID();
|
||||
this.outcome = outcome;
|
||||
}
|
||||
|
||||
public EffectImpl(final EffectImpl effect) {
|
||||
// this.id = effect.id;
|
||||
this.outcome = effect.outcome;
|
||||
}
|
||||
|
||||
|
|
@ -56,11 +52,6 @@ public abstract class EffectImpl<T extends Effect<T>> implements Effect<T> {
|
|||
return "";
|
||||
}
|
||||
|
||||
// @Override
|
||||
// public UUID getId() {
|
||||
// return id;
|
||||
// }
|
||||
|
||||
@Override
|
||||
public Outcome getOutcome() {
|
||||
return outcome;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue