You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ByteBuffer.clear() method behaves different on java 8 and java9 above,
when calling ByteBufferPool.release(this.buffer) in SeaweedOutputStream class, which calls obj.clear() method in ByteBufferPool class, No SuchMethodError appears on java 8.
The reason and solution is described in this article, https://www.jianshu.com/p/8f219d981aa9?share_token=c541612b-25bd-4155-b02f-ddd58fd16771
The text was updated successfully, but these errors were encountered:
ByteBuffer.clear() method behaves different on java 8 and java9 above,
when calling ByteBufferPool.release(this.buffer) in SeaweedOutputStream class, which calls obj.clear() method in ByteBufferPool class, No SuchMethodError appears on java 8.
The reason and solution is described in this article,
https://www.jianshu.com/p/8f219d981aa9?share_token=c541612b-25bd-4155-b02f-ddd58fd16771
The text was updated successfully, but these errors were encountered: