JDK-8368817 : Convert JDK_Version::to_string to use stringStream instead of jio_snprintf-chain
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: runtime
  • Priority: P4
  • Status: New
  • Resolution: Unresolved
  • Submitted: 2025-09-28
  • Updated: 2025-09-28
Related Reports
Blocks :  
Description
JDK_Version::to_string uses a sequence of jio_snprintf calls to build the version string in the provided buffer. This can be simplified by using a stringStream over the buffer and stream printing operations.