diff options
author | Lukas Larsson <[email protected]> | 2018-06-13 15:47:58 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2018-06-14 10:16:42 +0200 |
commit | c527ba3a2bed6e60d8a832e7977c3d8e8476a504 (patch) | |
tree | afa0a005906da538b6b08b9f099d1c9ba095c73f /lib/stdlib | |
parent | d0252a3cef9330eb0d8cc252cce79f6f8df26e03 (diff) | |
download | otp-c527ba3a2bed6e60d8a832e7977c3d8e8476a504.tar.gz otp-c527ba3a2bed6e60d8a832e7977c3d8e8476a504.tar.bz2 otp-c527ba3a2bed6e60d8a832e7977c3d8e8476a504.zip |
Deprecate otp_mibs
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/otp_internal.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl index ceec3079a1..24d6e384d6 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -620,6 +620,8 @@ obsolete_1(ssl, ssl_accept, 2) -> {deprecated, "deprecated; use ssl:handshake/2 instead"}; obsolete_1(ssl, ssl_accept, 3) -> {deprecated, "deprecated; use ssl:handshake/3 instead"}; +obsolete_1(otp_mib, F, _) when F =:= load; F =:= unload -> + {deprecated, "deprecated; functionality will be removed in a future release"}; %% not obsolete |