Skip to content

Commit 3b2a69e

Browse files
committed
operate with 6 digit scaled number
1 parent 6a12bad commit 3b2a69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/spacious_team/broker/report_parser/api/AbstractTransaction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ protected Optional<TransactionCashFlow> getFeeCashFlow() {
100100
}
101101

102102
protected boolean isNotZero(BigDecimal value) {
103-
return Math.abs(value.floatValue()) >= 0.0001;
103+
return Math.abs(value.floatValue()) > 0.000_000_99f;
104104
}
105105

106106
@EqualsAndHashCode.Include

0 commit comments

Comments
 (0)