mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed a problem of image download.
This commit is contained in:
parent
2117bfc17c
commit
75874df33f
1 changed files with 0 additions and 11 deletions
|
@ -57,11 +57,6 @@ public enum TokensMtgImageSource implements CardImageSource {
|
|||
private static final Set<String> supportedSets = new LinkedHashSet<String>();
|
||||
|
||||
private final Object tokensDataSync = new Object();
|
||||
private final Set<String> supportedSets;
|
||||
|
||||
private TokensMtgImageSource() {
|
||||
this.supportedSets = new LinkedHashSet<>();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getSourceName() {
|
||||
|
@ -356,10 +351,4 @@ public enum TokensMtgImageSource implements CardImageSource {
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArrayList<String> getSupportedSets() {
|
||||
ArrayList<String> supportedSetsCopy = new ArrayList<>();
|
||||
supportedSetsCopy.addAll(supportedSets);
|
||||
return supportedSetsCopy;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue