-
Bug
-
Resolution: Fixed
-
P2
-
9
-
b157
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8175672 | 10 | Robert Field | P2 | Resolved | Fixed | b02 |
The built-in PRINTING startup file defines:
void printf(Locale l, String format, Object... args) { System.out.printf(l, format, args); }
but, unless there are imports for Locale, it is undefined. Should be:
void printf(java.util.Locale l, String format, Object... args) { System.out.printf(l, format, args); }
void printf(Locale l, String format, Object... args) { System.out.printf(l, format, args); }
but, unless there are imports for Locale, it is undefined. Should be:
void printf(java.util.Locale l, String format, Object... args) { System.out.printf(l, format, args); }
- backported by
-
JDK-8175672 jshell tool: --startup PRINTING references undeclared Locale class
- Resolved