patch 55731: StringBuilder logic in DataFormatter.cleanFormatForNumber

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1553248 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2013-12-24 06:02:27 +00:00
parent ed5942640f
commit ff79d73725

View File

@ -583,6 +583,7 @@ public class DataFormatter {
} }
// Remove the character too // Remove the character too
sb.deleteCharAt(i); sb.deleteCharAt(i);
i--;
} }
} }
} }
@ -606,6 +607,7 @@ public class DataFormatter {
} }
// Remove the _ too // Remove the _ too
sb.deleteCharAt(i); sb.deleteCharAt(i);
i--;
} }
} }
} }