Merge pull request #103 from cconlon/jdkobjectcast

Fix varargs warning in WolfSSLJDK8Helper.java
pull/105/head
JacobBarthelmeh 2022-06-15 12:28:53 -07:00 committed by GitHub
commit d978ccaf62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ public class WolfSSLJDK8Helper
AccessController.doPrivileged(new PrivilegedAction<Object>() { AccessController.doPrivileged(new PrivilegedAction<Object>() {
public Object run() { public Object run() {
try { try {
m.invoke(out, appProtos); m.invoke(out, (Object[])appProtos);
} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }