LWJGLX / debug

Debugging LWJGL3 OpenGL applications
MIT License
37 stars 7 forks source link

java.lang.NoSuchMethodError: 'java.nio.ByteBuffer org.lwjglx.debug.RT.slice(java.nio.ByteBuffer, int, int)' #25

Closed MESLewis closed 4 years ago

MESLewis commented 4 years ago
 public static void main(String[] args) {
    byte[] byteArray = new byte[10];
    ByteBuffer bug = ByteBuffer.wrap(byteArray);
    bug.slice(1, 5);
  }

Running this with the java agent produces a NoSuchMethodError

httpdigest commented 4 years ago

Thanks for reporting!