The ComplexFormat parse method allows spaces in Complex numbers, for
example the following test case works fine:

    public void testParseSimpleNoDecimals2() {
        String source = "1 1 2 + 1i";
        Complex expected = new Complex(112, 1);
        try {
            Complex actual = (Complex)complexFormat.parseObject(source);
            assertEquals(expected, actual);
        } catch (ParseException ex) {
            fail(ex.getMessage());
        }
    }

Is this intentional?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to