JDK-8256663 : [test] Deprecated use of new Double in jshell ImportTest
  • Type: Bug
  • Component: tools
  • Sub-Component: jshell
  • Affected Version: 16
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2020-11-19
  • Updated: 2020-11-19
  • Resolved: 2020-11-19
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
repo-valhallaFixed
Related Reports
Relates :  
Description
The Jshell test jdk/jshell/ImportTest.java uses "new double(...)"
that has been deprecated for removal.
It can be replaced by Double.valueof(...).