RFR: 8282191: Implementation of Foreign Function & Memory API (Preview) [v40]

ExE Boss duke at openjdk.java.net
Fri May 6 16:00:59 UTC 2022


On Fri, 6 May 2022 11:51:46 GMT, Maurizio Cimadamore <mcimadamore at openjdk.org> wrote:

>> This PR contains the API and implementation changes for JEP-424 [1]. A more detailed description of such changes, to avoid repetitions during the review process, is included as a separate comment.
>> 
>> [1] - https://openjdk.java.net/jeps/424
>
> Maurizio Cimadamore has updated the pull request incrementally with one additional commit since the last revision:
> 
>   Add tests for loaderLookup/restricted method corner cases

src/java.base/share/classes/jdk/internal/reflect/Reflection.java line 116:

> 114:         // if there is no caller class, act as if the call came from unnamed module of system class loader
> 115:         Module module = currentClass != null ?
> 116:                 currentClass.getModule() : ClassLoader.getSystemClassLoader().getUnnamedModule();

**Nit:** maybe add a line break
Suggestion:

                currentClass.getModule() :
                ClassLoader.getSystemClassLoader().getUnnamedModule();

-------------

PR: https://git.openjdk.java.net/jdk/pull/7888


More information about the nio-dev mailing list