Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8045635 | 8u25 | Roger Riggs | P4 | Resolved | Fixed | b01 |
JDK-8040030 | 8u20 | Roger Riggs | P4 | Resolved | Fixed | b11 |
JDK-8053863 | emb-8u26 | Roger Riggs | P4 | Resolved | Fixed | b17 |
TemporalAccessor line 220
throw new UnsupportedTemporalTypeException("Invalid field " + field + " + for get() method, use getLong() instead");
has a "+" within the quotes resulting in the error message "UnsupportedTemporalTypeException: Invalid field ModifiedJulianDay + for get() method, use getLong() instead"
Fix is to remove the two characters " +":
throw new UnsupportedTemporalTypeException("Invalid field " + field + " for get() method, use getLong() instead");
throw new UnsupportedTemporalTypeException("Invalid field " + field + " + for get() method, use getLong() instead");
has a "+" within the quotes resulting in the error message "UnsupportedTemporalTypeException: Invalid field ModifiedJulianDay + for get() method, use getLong() instead"
Fix is to remove the two characters " +":
throw new UnsupportedTemporalTypeException("Invalid field " + field + " for get() method, use getLong() instead");
- backported by
-
JDK-8040030 Error message typo in TemporalAccessor
-
- Resolved
-
-
JDK-8045635 Error message typo in TemporalAccessor
-
- Resolved
-
-
JDK-8053863 Error message typo in TemporalAccessor
-
- Resolved
-