undo last change due to broken test

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911233 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2023-07-24 12:00:17 +00:00
parent cd2dcd3940
commit 1f446e0aef
2 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class CellElapsedFormatter extends CellFormatter {
val = elapsed / factor;
else
val = elapsed / factor % modBy;
if (type == '0' || type == 's')
if (type == '0')
return Math.round(val);
else
return (long) val;