We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a12bad commit 3b2a69eCopy full SHA for 3b2a69e
src/main/java/org/spacious_team/broker/report_parser/api/AbstractTransaction.java
@@ -100,7 +100,7 @@ protected Optional<TransactionCashFlow> getFeeCashFlow() {
100
}
101
102
protected boolean isNotZero(BigDecimal value) {
103
- return Math.abs(value.floatValue()) >= 0.0001;
+ return Math.abs(value.floatValue()) > 0.000_000_99f;
104
105
106
@EqualsAndHashCode.Include
0 commit comments