mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
fix provisioning error by using Arrays.asList instead of List.of
This commit is contained in:
parent
1b753e4f29
commit
f0fafeb2f7
1 changed files with 3 additions and 1 deletions
|
@ -24,13 +24,15 @@ import lombok.extern.slf4j.Slf4j;
|
|||
|
||||
import javax.annotation.Nullable;
|
||||
import javax.inject.Named;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Slf4j
|
||||
public class ProvidersRepository {
|
||||
private static final List<String> DEFAULT_NODES = List.of(
|
||||
private static final List<String> DEFAULT_NODES = Arrays.asList(
|
||||
"http://a66ulzwhhudtqy6k2efnhodj2n6wnc5mnzjs3ocqtf47lwtcuo4wxyqd.onion/" // Haveno
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue