From d4751f9058c5a38b5332e8ca29f3c9378ae7fe9b Mon Sep 17 00:00:00 2001 From: Mustafa M Date: Wed, 12 Jul 2023 01:15:39 -0400 Subject: [PATCH] Remove HDF5.exists deprecation This was removed in v0.16 of HDF5 and since the present version of JLD specifies this as minimum compatible HDF5 version, it is safe to remove the warning. --- src/JLD.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/JLD.jl b/src/JLD.jl index 653bc2b..e67a368 100644 --- a/src/JLD.jl +++ b/src/JLD.jl @@ -1410,7 +1410,6 @@ include("JLD00.jl") ### v0.12.0 deprecations ### -import HDF5: exists export exists @noinline function exists(p::Union{JldFile, JldGroup, JldDataset}, path::String) Base.depwarn("`exists(p, path)` is deprecated, use `haskey(p, path)` instead.", :exists)