Skip to content

Commit eef39ab

Browse files
authored
Remove deprecated internal ZstdCompressor constructor (#86)
1 parent 1c13659 commit eef39ab

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uuid = "6b39b394-51ab-5f42-8807-6242bab2b4c2"
33
license = "MIT"
44
authors = ["Kenta Sato <bicycle1885@gmail.com>",
55
"JuliaIO Github Organization"]
6-
version = "0.8.7"
6+
version = "0.8.8-dev"
77

88
[deps]
99
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"

src/compression.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,6 @@ function ZstdCompressor(;
9494
)
9595
end
9696

97-
function ZstdCompressor(cstream, level)
98-
Base.depwarn("ZstdCompressor(cstream, level) is deprecated, use the keyword argument constructor ZstdCompressor(; level=...) instead", :ZstdCompressor)
99-
ZstdCompressor(cstream, level, Int32(0), LibZstd.ZSTD_e_continue)
100-
end
101-
10297
"""
10398
ZstdFrameCompressor(;level=$(DEFAULT_COMPRESSION_LEVEL))
10499

0 commit comments

Comments
 (0)