summaryrefslogtreecommitdiff
path: root/lib/stdlib/src/otp_internal.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <bjorn@erlang.org>2020-12-02 08:49:24 +0100
committerBjörn Gustavsson <bjorn@erlang.org>2020-12-03 07:42:16 +0100
commit69b74beec7fdaf1f34fd0b793c0708c342ae1a33 (patch)
tree4cd0c08408d8a1f902cc968ab50eac6b5f5a1d7f /lib/stdlib/src/otp_internal.erl
parent7e08e56d0458971c5d727d0b1cb751b3e5ac01c5 (diff)
downloaderlang-69b74beec7fdaf1f34fd0b793c0708c342ae1a33.tar.gz
Update deprecations
Diffstat (limited to 'lib/stdlib/src/otp_internal.erl')
-rw-r--r--lib/stdlib/src/otp_internal.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl
index 65de19b8b8..b84c47a61b 100644
--- a/lib/stdlib/src/otp_internal.erl
+++ b/lib/stdlib/src/otp_internal.erl
@@ -519,8 +519,6 @@ obsolete(crypto, next_iv, _) ->
{deprecated, "see the 'New and Old API' chapter of the CRYPTO User's guide", "OTP 24"};
obsolete(crypto, stream_init, _) ->
{deprecated, "use crypto:crypto_init/3 + crypto:crypto_update/2 + crypto:crypto_final/1 or crypto:crypto_one_time/4 instead", "OTP 24"};
-obsolete(filename, find_src, _) ->
- {deprecated, "use filelib:find_source/1,3 instead", "OTP 24"};
obsolete(ssl, ssl_accept, _) ->
{deprecated, "use ssl_handshake/1,2,3 instead", "OTP 24"};
obsolete(asn1ct, decode, _) ->
@@ -539,6 +537,8 @@ obsolete(erl_scan, attributes_info, _) ->
{removed, "use erl_anno:{column,line,location,text}/1 instead"};
obsolete(erl_scan, token_info, _) ->
{removed, "use erl_scan:{category,column,line,location,symbol,text}/1 instead"};
+obsolete(filename, find_src, _) ->
+ {removed, "use filelib:find_source/1,3 instead"};
obsolete(gen_fsm, _, _) ->
{deprecated, "use the 'gen_statem' module instead"};
obsolete(igor, _, _) ->