Add type-hint for new LZ4 dep
This commit is contained in:
parent
5cedeacf63
commit
f1b4c7ff88
1 changed files with 2 additions and 1 deletions
|
|
@ -77,7 +77,8 @@
|
|||
(let [len-decomp (alength ^bytes ba)
|
||||
max-len-comp (.maxCompressedLength compressor len-decomp)
|
||||
ba-comp* (byte-array max-len-comp) ; Over-sized
|
||||
len-comp (.compress compressor ba 0 len-decomp ba-comp* 0 max-len-comp)
|
||||
len-comp (.compress compressor ^bytes ba 0 len-decomp
|
||||
ba-comp* 0 max-len-comp)
|
||||
;;
|
||||
baos (ByteArrayOutputStream. (+ len-comp 4))
|
||||
dos (DataOutputStream. baos)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue