So I am a developer for a project that uses a java agent to inject. It should be noted though that this error occurs after main is called.
Everything is going fine for most users, but a few are having an issue where java.nio.IntBuffer isn't loading clear() (inherited from Buffer)
Error:
java.lang.NoSuchMethodError: java.nio.IntBuffer.clear()Ljava/nio/IntBuffer;
Then the stacktrace, which simply gives the first time clear() is called in our code.
What is the cause of this (besides the fact that Java isn't loading at runtime) and how do I fix it?