Removed spurious initialization.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1292294 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-02-22 14:02:08 +00:00
parent 23a6bab0c8
commit 5bccf687e8
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ public class ComplexFormat {
// format sign and imaginary
double im = complex.getImaginary();
StringBuffer imAppendTo = new StringBuffer();
StringBuffer imAppendTo;
if (im < 0.0) {
toAppendTo.append(" - ");
imAppendTo = formatImaginary(-im, new StringBuffer(), pos);