On Tue, 4 Apr 2023 19:22:48 GMT, Roger Riggs <rri...@openjdk.org> wrote:
> With the addition of `jdk.internal.util.OperatingSystem` references to the > system property `os.name` can be replaced. > This PR exports jdk.internal.util to: > - java.prefs, > - java.security.jgss, > - java.smartcardio, > - jdk.charsets, > - jdk.net, > - jdk.zipfs src/java.security.jgss/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java line 105: > 103: case WINDOWS -> // Full path needed, DLL > is in jre/bin > 104: new > String[]{StaticProperty.javaHome() > 105: + > "\\bin\\sspi_bridge.dll"}; Suggestion: new String[]{ StaticProperty.javaHome() + "\\bin\\sspi_bridge.dll" }; ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/13335#discussion_r1158027900