Remove incorrect 0.00 check

This commit is contained in:
Robin K 2022-12-09 17:32:49 +01:00
parent 61865f296e
commit 180f233be0
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ public class XDFConversionLayer extends ConversionLayer {
}
}
boolean isStatic = staticCells.size() == indexCount && indexCount > 1 && !staticCells.peekLast().equalsIgnoreCase("0.00");
boolean isStatic = staticCells.size() == indexCount && indexCount > 1;
if (isStatic) {
staticTable = "Static ";
targetTable.setAttribute("size" + id, "" + staticCells.size());