From 254059b411ed3999460d46e14ec2fdf6b270ee97 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Tue, 16 Oct 2018 11:57:50 -0500 Subject: [PATCH] Fix typo --- .../java/bisq/core/offer/availability/ArbitratorSelection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java b/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java index 54ee30b4e9..e4466f57e2 100644 --- a/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java +++ b/core/src/main/java/bisq/core/offer/availability/ArbitratorSelection.java @@ -88,7 +88,7 @@ public class ArbitratorSelection { } static String getLeastUsedArbitrator(List lastAddressesUsedInTrades, Set arbitrators) { - checkArgument(!arbitrators.isEmpty(), "arbitrators must nto be empty"); + checkArgument(!arbitrators.isEmpty(), "arbitrators must not be empty"); List> arbitratorTuples = arbitrators.stream() .map(e -> new Tuple2<>(e, new AtomicInteger(0))) .collect(Collectors.toList());