package mage.utils; import mage.interfaces.ActionWithResult; /** * This class always returns null independently from type used. * * @author noxx */ public abstract class ActionWithNullNegativeResult implements ActionWithResult { @Override public T negativeResult() { return null; } }