mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Little fixes
This commit is contained in:
parent
ca521751cd
commit
fb4065ba66
7 changed files with 14 additions and 16 deletions
|
|
@ -1252,7 +1252,7 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene
|
|||
private void cbExpansionSetActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cbExpansionSetActionPerformed
|
||||
// one item selected by user
|
||||
|
||||
// ignore combobox modifing
|
||||
// ignore combobox modifying
|
||||
if (isSetsFilterLoading) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ public final class CountryUtil {
|
|||
|
||||
public static String getCountryName(String countryCode) {
|
||||
if (COUNTRY_MAP.isEmpty()) {
|
||||
for (int i = 0; i <= CountryComboBox.countryList.length - 1; i++) {
|
||||
for (int i = 0; i < CountryComboBox.countryList.length; i++) {
|
||||
COUNTRY_MAP.put(CountryComboBox.countryList[i][1], CountryComboBox.countryList[i][0]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue