diff options
author | Björn Gustavsson <[email protected]> | 2014-02-24 11:56:45 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-02-24 11:56:45 +0100 |
commit | e70a2dc2e0fc2ef38a7cdf5bbf13313408003cea (patch) | |
tree | 124d3d098d88887146a1219179240e4c01bb93db /lib/stdlib/src | |
parent | f56c221205f6e74f027dd74c86ba5ae1e504d318 (diff) | |
parent | 1bdb47b00faff39994a041c6d9a291a2c68143d9 (diff) | |
download | otp-e70a2dc2e0fc2ef38a7cdf5bbf13313408003cea.tar.gz otp-e70a2dc2e0fc2ef38a7cdf5bbf13313408003cea.tar.bz2 otp-e70a2dc2e0fc2ef38a7cdf5bbf13313408003cea.zip |
Merge branch 'bjorn/asn1/deprecations/OTP-11731'
* bjorn/asn1/deprecations/OTP-11731:
Remove or de-emphasize references to the deprecated asn1rt module
Deprecate asn1 functions
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/otp_internal.erl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl index cebc9c91bd..380bc3eccc 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -577,6 +577,24 @@ obsolete_1(wxCursor, new, 3) -> obsolete_1(wxCursor, new, 4) -> {deprecated,"deprecated function not available in wxWidgets-2.9 and later"}; +%% Added in OTP 17. +obsolete_1(asn1ct, decode,3) -> + {deprecated,"deprecated; use Mod:decode/2 instead"}; +obsolete_1(asn1ct, encode, 3) -> + {deprecated,"deprecated; use Mod:encode/2 instead"}; +obsolete_1(asn1rt, decode,3) -> + {deprecated,"deprecated; use Mod:decode/2 instead"}; +obsolete_1(asn1rt, encode, 2) -> + {deprecated,"deprecated; use Mod:encode/2 instead"}; +obsolete_1(asn1rt, encode, 3) -> + {deprecated,"deprecated; use Mod:encode/2 instead"}; +obsolete_1(asn1rt, info, 1) -> + {deprecated,"deprecated; use Mod:info/0 instead"}; +obsolete_1(asn1rt, utf8_binary_to_list, 1) -> + {deprecated,{unicode,characters_to_list,1}}; +obsolete_1(asn1rt, utf8_list_to_binary, 1) -> + {deprecated,{unicode,characters_to_binary,1}}; + obsolete_1(_, _, _) -> no. |