]> source.dussan.org Git - poi.git/commitdiff
findbugs fix
authorAndreas Beeker <kiwiwings@apache.org>
Wed, 16 Mar 2016 23:36:17 +0000 (23:36 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Wed, 16 Mar 2016 23:36:17 +0000 (23:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735348 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/format/CellNumberFormatter.java

index 8d3b31da2b8fb3f714833c433daca16d237be03b..2097e6c909fe7a80c71a5201f2cb4b3213d34452 100644 (file)
@@ -639,8 +639,8 @@ public class CellNumberFormatter extends CellFormatter {
                 return;
             } else {
                 // New we check to see if we should remove the integer part
-                boolean numNoZero = !numeratorSpecials.contains('0');
-                boolean intNoZero = !integerSpecials.contains('0');
+                boolean numNoZero = !hasChar('0', numeratorSpecials);
+                boolean intNoZero = !hasChar('0', integerSpecials);
                 boolean intOnlyHash = integerSpecials.isEmpty() || (integerSpecials.size() == 1 && integerSpecials.contains('#'));
 
                 boolean removeBecauseZero     = fractional == 0 && (intOnlyHash || numNoZero);