Fix codacy issue

This commit is contained in:
ghubstan 2021-06-13 14:05:00 -03:00
parent 05f3985447
commit 54efad097d
No known key found for this signature in database
GPG key ID: E35592D6800A861E
2 changed files with 2 additions and 1 deletions

View file

@ -130,7 +130,7 @@ public class LongRunningOfferDeactivationTest extends AbstractOfferTest {
int numIterations = 0;
while (++numIterations < MAX_ITERATIONS) {
offer = aliceClient.getMyOffer(offer.getId());
;
var mktPrice = aliceClient.getBtcPrice("USD");
if (offer.getIsActivated()) {
log.info("Offer still enabled at mkt price {} < {} trigger price",

View file

@ -56,6 +56,7 @@ import static bisq.common.util.MathUtils.roundDoubleToLong;
import static bisq.common.util.MathUtils.scaleUpByPowerOf10;
import static bisq.core.locale.CurrencyUtil.isCryptoCurrency;
import static bisq.core.offer.Offer.State;
import static bisq.core.offer.Offer.State.*;
import static bisq.core.offer.OfferPayload.Direction;
import static bisq.core.offer.OfferPayload.Direction.BUY;
import static bisq.core.offer.OpenOffer.State.AVAILABLE;