mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fix
This commit is contained in:
parent
7e4767fd30
commit
d97229cbcd
1 changed files with 1 additions and 3 deletions
|
@ -1,7 +1,5 @@
|
|||
package mage.abilities.hint;
|
||||
|
||||
import com.sun.istack.internal.NotNull;
|
||||
|
||||
import java.awt.*;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
|
@ -45,7 +43,7 @@ public class HintUtils {
|
|||
return res;
|
||||
}
|
||||
|
||||
public static void appendHints(@NotNull List<String> destList, @NotNull List<String> newHints) {
|
||||
public static void appendHints(List<String> destList, List<String> newHints) {
|
||||
// append only unique hints
|
||||
HashSet<String> used = new HashSet<>();
|
||||
for (String s : newHints) {
|
||||
|
|
Loading…
Reference in a new issue