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.
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.
- duplicates
-
JDK-8034906 Fix typos, errors and Javadoc differences in java.time
-
- Closed
-