forked from External/mage
style: remove some static imports
This commit is contained in:
parent
d61de05eb8
commit
b85d2883e3
11 changed files with 18 additions and 34 deletions
|
|
@ -1,8 +1,6 @@
|
|||
|
||||
package mage.abilities.effects.common;
|
||||
|
||||
import static java.lang.Integer.min;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
|
|
@ -41,7 +39,7 @@ public class ReplaceOpponentCardsInHandWithSelectedEffect extends OneShotEffect
|
|||
targetOpponent.putCardsOnTopOfLibrary(targetOpponent.getHand(), game, source, false);
|
||||
|
||||
int librarySize = targetOpponent.getLibrary().size();
|
||||
int searchLibraryForNum = min(originalHandSize, librarySize);
|
||||
int searchLibraryForNum = Integer.min(originalHandSize, librarySize);
|
||||
|
||||
TargetCardInLibrary target = new TargetCardInLibrary(searchLibraryForNum, searchLibraryForNum, new FilterCard());
|
||||
|
||||
|
|
@ -66,4 +64,4 @@ public class ReplaceOpponentCardsInHandWithSelectedEffect extends OneShotEffect
|
|||
return new ReplaceOpponentCardsInHandWithSelectedEffect(this);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue