findbugs fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2016-03-16 23:36:17 +00:00
parent 56ceb000f1
commit 61388344ba

View File

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