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
Add type hints to breaking changes in java.nio.ByteBuffer
Fixes Java 13+ compatiblity issues, as noted in
clj-commons#23. Copying the relevant parts from the
Issue:
`java.nio.ByteBuffer` and the other buffer types in `java.nio` now
define absolute bulk `get` and `put` methods to transfer contiguous
sequences of bytes without regard to or effect on the buffer
position.
Due to this, running durable-queue against Java 13+ leads to the
following error:
No matching method put found taking 2 args for class
`java.nio.DirectByteBuffer`
This commit fixes the problem by adding the relevant type-hints
Author: Mark Bastian
Ref: https://github.com/markbastian/durable-queueCloses: clj-commons#23Closes: clj-commons#24
0 commit comments