We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VarHandle varHandle = MethodHandles.byteArrayViewVarHandle(int[].class, ByteOrder.BIG_ENDIAN); byte[] byteArray = new byte[4]; varHandle.set(byteArray, 0, 1234); varHandle.get(byteArray, 0);
Warning: com.example.MyClass: can't find referenced method 'void set(byte[],int,int)' in library class java.lang.invoke.VarHandle Warning: com.example.MyClass: can't find referenced method 'int get(byte[],int)' in library class java.lang.invoke.VarHandle
The text was updated successfully, but these errors were encountered:
Hi @satsen !
You can use -dontwarn java.lang.invoke.VarHandle to ignore these warnings if it's not causing any actual issue.
-dontwarn java.lang.invoke.VarHandle
Sorry, something went wrong.
Hi @mrjameshamilton. Thank you, I am already doing that. I wanted to report the issue so that it is known.
No branches or pull requests
Warning: com.example.MyClass: can't find referenced method 'void set(byte[],int,int)' in library class java.lang.invoke.VarHandle
Warning: com.example.MyClass: can't find referenced method 'int get(byte[],int)' in library class java.lang.invoke.VarHandle
The text was updated successfully, but these errors were encountered: