mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-19 05:44:05 +01:00
Merge pull request #6722 from jmacxx/add_sepa_country_gi
Add SEPA Payment Account country: GI (Gibraltar)
This commit is contained in:
commit
5439108141
@ -96,7 +96,7 @@ public class CountryUtil {
|
|||||||
public static List<Country> getAllSepaNonEuroCountries() {
|
public static List<Country> getAllSepaNonEuroCountries() {
|
||||||
List<Country> list = new ArrayList<>();
|
List<Country> list = new ArrayList<>();
|
||||||
String[] codes = {"BG", "HR", "CZ", "DK", "GB", "HU", "PL", "RO",
|
String[] codes = {"BG", "HR", "CZ", "DK", "GB", "HU", "PL", "RO",
|
||||||
"SE", "IS", "NO", "LI", "CH", "JE"};
|
"SE", "IS", "NO", "LI", "CH", "JE", "GI"};
|
||||||
populateCountryListByCodes(list, codes);
|
populateCountryListByCodes(list, codes);
|
||||||
list.sort((a, b) -> a.name.compareTo(b.name));
|
list.sort((a, b) -> a.name.compareTo(b.name));
|
||||||
return list;
|
return list;
|
||||||
@ -114,14 +114,6 @@ public class CountryUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static List<Country> getAllSepaInstantCountries() {
|
public static List<Country> getAllSepaInstantCountries() {
|
||||||
// TODO find reliable source for list
|
|
||||||
// //Austria, Estonia, Germany, Italy, Latvia, Lithuania, the Netherlands and Spain.
|
|
||||||
|
|
||||||
/* List<Country> list = new ArrayList<>();
|
|
||||||
String[] codes = {"AT", "DE", "EE",
|
|
||||||
"IT", "LV", "LT", "NL", "ES"};
|
|
||||||
populateCountryListByCodes(list, codes);
|
|
||||||
list.sort((a, b) -> a.name.compareTo(b.name));*/
|
|
||||||
return getAllSepaCountries();
|
return getAllSepaCountries();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user