mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Avoid unnecessary comparisons in boolean expressions
This commit is contained in:
parent
80c10dba78
commit
424c3cb1ab
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ public class CreateOfferService {
|
|||
amount.value,
|
||||
minAmount.value,
|
||||
useMarketBasedPrice,
|
||||
(useMarketBasedPrice == true ? marketPriceMargin : price.getValue()),
|
||||
(useMarketBasedPrice ? marketPriceMargin : price.getValue()),
|
||||
buyerSecurityDepositAsDouble);
|
||||
|
||||
long creationTime = new Date().getTime();
|
||||
|
|
Loading…
Add table
Reference in a new issue