8319560: Reformat method parameters in the FFM API

Reviewed-by: mcimadamore
This commit is contained in:
Per Minborg 2023-11-07 15:05:03 +00:00
parent ef8c8408a6
commit 134c382d39
4 changed files with 26 additions and 12 deletions

View file

@ -262,7 +262,11 @@ public interface SymbolLookup {
return libraryLookup(path, RawNativeLibraries::load, arena);
}
private static <Z> SymbolLookup libraryLookup(Z libDesc, BiFunction<RawNativeLibraries, Z, NativeLibrary> loadLibraryFunc, Arena libArena) {
private static <Z>
SymbolLookup libraryLookup(Z libDesc,
BiFunction<RawNativeLibraries, Z, NativeLibrary> loadLibraryFunc,
Arena libArena) {
Objects.requireNonNull(libDesc);
Objects.requireNonNull(libArena);
// attempt to load native library from path or name