See Dan's writeup in https://mail.openjdk.org/pipermail/valhalla-spec-experts/2024-February/002443.html
> when we did JEP 390 [1], we understood that there would continue to be class files in the wild calling 'new java/lang/Integer' and those class files would need to continue to work. The JEP refers to "Tooling to support execution of binaries that are unable to update their usages of wrapper class constructors" as future work. We envisioned some sort of bytecode rewriting capability to clean up these class files.
>
> Since then, we've updated our construction approach for value classes (see [2]), and it is no longer the case that 'new java/lang/Integer' in bytecode is incompatible with a value class Integer. Thus, we no longer need any special tooling—the stale binaries will just continue working!
>
> That said, these old classes will stop working if we ever go through with the threatened removal, as advertised by JEP 390. It probably makes sense to roll that back and just treat these constructors as normal @Deprecated APIs, with no specific plans for future removal.