NoSuchMethodError: `java.nio.FloatBuffer.clear()Ljava/nio/FloatBuffer`
LemmaEOF opened this issue ยท 2 comments
java.lang.NoSuchMethodError: java.nio.FloatBuffer.clear()Ljava/nio/FloatBuffer;
at ladysnake.satin.api.util.GlMatrices.getTmpBuffer(GlMatrices.java:48) ~[Satin-1.4.0@net.fabricmc.yarn.1_16_1.1.16.1+build.1-v2.jar:?]
at ladysnake.satin.api.util.GlMatrices.getInverseTransformMatrix(GlMatrices.java:111) ~[Satin-1.4.0@net.fabricmc.yarn.1_16_1.1.16.1+build.1-v2.jar:?]
FloatBuffer#clear
is synthetic, with the parent returning Buffer
. For some reason, the bytecode thinks it should be returning a FloatBuffer, even though the result is ignored.
Should actually be fixed since dee37ea