diff options
author | Ingela Anderton Andin <[email protected]> | 2012-12-19 12:20:41 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-12-19 12:30:28 +0100 |
commit | 13971c224c42d1a583a41d37e809a380c932c60c (patch) | |
tree | 8d8843b1d3da9621bee26007e5d04232c2e56094 /lib/stdlib/src/otp_internal.erl | |
parent | caf5dad14c1fc8f983d803bc3e011cd5a8e6cc62 (diff) | |
download | otp-13971c224c42d1a583a41d37e809a380c932c60c.tar.gz otp-13971c224c42d1a583a41d37e809a380c932c60c.tar.bz2 otp-13971c224c42d1a583a41d37e809a380c932c60c.zip |
stdlib: Updated otp_internal to reflect removal of deprecated function
Note the comment in this file incorrectly stated that ssl:pid/1 should be
removed in R17, the intention has always been R16. This function
has never done anything relevant for the new ssl implementation that is
default in R14 and the only available one in R15.
Diffstat (limited to 'lib/stdlib/src/otp_internal.erl')
-rw-r--r-- | lib/stdlib/src/otp_internal.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl index cddf345c76..6a0f07bdee 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -347,7 +347,7 @@ obsolete_1(docb_xml_check, _, _) -> obsolete_1(asn1rt, F, _) when F == load_driver; F == unload_driver -> {deprecated,"deprecated (will be removed in R16A); has no effect as drivers are no longer used."}; obsolete_1(ssl, pid, 1) -> - {deprecated,"deprecated (will be removed in R17); is no longer needed"}; + {removed,"was removed in R16; is no longer needed"}; obsolete_1(inviso, _, _) -> {removed,"the inviso application was removed in R16"}; |