Browse Source

FindBugs - BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1696049 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_13_FINAL
Andreas Beeker 8 years ago
parent
commit
b971ffa9ce
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/java/org/apache/poi/ss/formula/functions/Complex.java

+ 1
- 1
src/java/org/apache/poi/ss/formula/functions/Complex.java View File

@@ -118,7 +118,7 @@ public class Complex extends Var2or3ArgFunction implements FreeRefFunction {
if (realINum != 1 && realINum != -1) {
if (isDoubleAnInt(realINum)) {
strb.append(new Double(realINum).intValue());
strb.append((int)realINum);
} else {
strb.append(realINum);
}

Loading…
Cancel
Save