Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
In rare cases a 'dot' is attached during serialization of EdmDateTime in a String.
Example:
Calendar date = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
date.set(1954, 7, 4);
String formated = instance.valueToString(date, EdmLiteralKind.DEFAULT, getPrecisionScaleFacets(3, null));
Results in ~ "1954-08-04T09:27:55."
The 'dot' at the end of the string is incorrect.