Skip to content

Commit

Permalink
fix(scientific-nota-long): IT-6704-parselong-1E-3
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Martin committed Jul 22, 2024
1 parent e7c21cc commit a9b880f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ else if (event == XMLStreamConstants.END_ELEMENT && elementMatches("v")) {
cellValue = Variant.of(Double.parseDouble(valueString));
}
else {
cellValue = Variant.of(Long.parseLong(valueString));
cellValue = Variant.of(Double.valueOf(valueString).longValue());
}
break;
}
Expand Down

0 comments on commit a9b880f

Please sign in to comment.