Duplicate :
|
FULL PRODUCT VERSION : java 8 A DESCRIPTION OF THE PROBLEM : Documentation gives this line of code to format date: " String text = date.toString(formatter); " It should be " String text = date.format(formatter); " BTW: The line above says correctly that the format method is for formatting. REPRODUCIBILITY : This bug can be reproduced always.
|