mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Mark new ExchangeRateProviders as package-private
Remove public modifier in their class definitions to preserve their package-private scope.
This commit is contained in:
parent
020547e19b
commit
75a0a47a1e
@ -29,7 +29,7 @@ import java.time.Duration;
|
||||
import java.util.Set;
|
||||
|
||||
@Component
|
||||
public class Binance extends ExchangeRateProvider {
|
||||
class Binance extends ExchangeRateProvider {
|
||||
|
||||
public Binance() {
|
||||
super("BINANCE", "binance", Duration.ofMinutes(1));
|
||||
|
@ -29,7 +29,7 @@ import java.time.Duration;
|
||||
import java.util.Set;
|
||||
|
||||
@Component
|
||||
public class Bitfinex extends ExchangeRateProvider {
|
||||
class Bitfinex extends ExchangeRateProvider {
|
||||
|
||||
public Bitfinex() {
|
||||
super("BITFINEX", "bitfinex", Duration.ofMinutes(1));
|
||||
|
@ -29,7 +29,7 @@ import java.time.Duration;
|
||||
import java.util.Set;
|
||||
|
||||
@Component
|
||||
public class Kraken extends ExchangeRateProvider {
|
||||
class Kraken extends ExchangeRateProvider {
|
||||
|
||||
public Kraken() {
|
||||
super("KRAKEN", "kraken", Duration.ofMinutes(1));
|
||||
|
@ -29,7 +29,7 @@ import java.time.Duration;
|
||||
import java.util.Set;
|
||||
|
||||
@Component
|
||||
public class Poloniex extends ExchangeRateProvider {
|
||||
class Poloniex extends ExchangeRateProvider {
|
||||
|
||||
public Poloniex() {
|
||||
super("POLO", "poloniex", Duration.ofMinutes(1));
|
||||
|
Loading…
Reference in New Issue
Block a user