diff --git a/src/magic/model/choice/MagicChoice.java b/src/magic/model/choice/MagicChoice.java index 58ef22f626..2fa0a5cee6 100644 --- a/src/magic/model/choice/MagicChoice.java +++ b/src/magic/model/choice/MagicChoice.java @@ -60,16 +60,7 @@ public abstract class MagicChoice { } else if (size>1) { final List choiceResultsList=new ArrayList(size); for (final Object option : options) { - try { - choiceResultsList.add(new Object[]{option}); - } catch (OutOfMemoryError err) { - final Collection opts=getArtificialOptions(game,event,player,source); - for (final Object opt : opts) { - System.err.println(opt); - } - System.err.println(event); - throw err; - } + choiceResultsList.add(new Object[]{option}); } return choiceResultsList; } else {