Do not select payment account currencies by default
Some checks failed
CodeQL / Analyze (java) (push) Has been cancelled
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled

This commit is contained in:
PW 2024-06-25 07:39:43 -04:00 committed by GitHub
parent 7ebc1bfc11
commit 7acba27b9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 0 additions and 9 deletions

View file

@ -42,7 +42,6 @@ public final class AdvancedCashAccount extends PaymentAccount {
public AdvancedCashAccount() {
super(PaymentMethod.ADVANCED_CASH);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}
@Override

View file

@ -40,7 +40,6 @@ public final class CapitualAccount extends PaymentAccount {
public CapitualAccount() {
super(PaymentMethod.CAPITUAL);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}
@Override

View file

@ -43,7 +43,6 @@ public final class CashAppAccount extends PaymentAccount {
public CashAppAccount() {
super(PaymentMethod.CASH_APP);
tradeCurrencies.addAll(getSupportedCurrencies());
}
@Override

View file

@ -100,7 +100,6 @@ public final class MoneyGramAccount extends PaymentAccount {
public MoneyGramAccount() {
super(PaymentMethod.MONEY_GRAM);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}
@Override

View file

@ -61,8 +61,6 @@ public final class OKPayAccount extends PaymentAccount {
public OKPayAccount() {
super(PaymentMethod.OK_PAY);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}
@Override

View file

@ -66,7 +66,6 @@ public final class PayPalAccount extends PaymentAccount {
public PayPalAccount() {
super(PaymentMethod.PAYPAL);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}
@Override

View file

@ -74,7 +74,6 @@ public final class RevolutAccount extends PaymentAccount {
public RevolutAccount() {
super(PaymentMethod.REVOLUT);
tradeCurrencies.addAll(getSupportedCurrencies());
}
@Override

View file

@ -69,7 +69,6 @@ public final class UpholdAccount extends PaymentAccount {
public UpholdAccount() {
super(PaymentMethod.UPHOLD);
tradeCurrencies.addAll(SUPPORTED_CURRENCIES);
}
@Override