Luc Maisonobe a écrit :
> sebb a écrit :
>> 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?
> 
> I don't think so.

I have looked at this issue but was not able te reproduce it with
current subversion trunk. I get a java.test.ParseException. If I remove
the spaces so the input string becomes "112 + 1i" then the test succeeds.

This was on Linux with open-jdk 6.

Luc

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


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

Reply via email to