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:
parent
23a6bab0c8
commit
5bccf687e8
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue