Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.1.1
-
None
-
None
-
Macosxm, Java 1.6.0
Description
Vector3DFormat notes it ingores whitespace in the javadoc but in the below example it does not:
Vector3DFormat vf = new Vector3DFormat("(", ")", ",");
System.out.println(vf.parse("(1, 2, 3)")); //prints
System.out.println(vf.parse("(1,2,3)")); //prints null