Browse Source

findbugs fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735348 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_15_BETA2
Andreas Beeker 8 years ago
parent
commit
ee4b65394f
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/java/org/apache/poi/ss/format/CellNumberFormatter.java

+ 2
- 2
src/java/org/apache/poi/ss/format/CellNumberFormatter.java View 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);

Loading…
Cancel
Save