This commit is contained in:
Lucwousin
2019-09-19 13:10:20 +02:00
parent db03a245e3
commit 7701569b4f

View File

@@ -35,8 +35,14 @@ public class WithdrawComparableEntry extends AbstractComparableEntry
return false;
}
if (amount == Amount.X && !option.endsWith(x)
|| !option.endsWith(amount.suffix))
if (amount == Amount.X)
{
if (!option.endsWith(x))
{
return false;
}
}
else if (!option.endsWith(amount.suffix))
{
return false;
}