diff options
author | Björn Gustavsson <[email protected]> | 2012-02-09 08:59:27 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-02-09 08:59:27 +0100 |
commit | 4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160 (patch) | |
tree | fb58764246e1ae9b29babc52be0a28c20c83389e /lib/stdlib | |
parent | 6004ec3e1785913ff0b74054cf614a35c180d54a (diff) | |
parent | 0fd29d5305952450b8b0d0172994b24af07aba88 (diff) | |
download | otp-4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160.tar.gz otp-4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160.tar.bz2 otp-4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160.zip |
Merge branch 'bjorn/deprecations/OTP-9907' into maint
* bjorn/deprecations/OTP-9907:
Deprecate the Toolbar application
Deprecate applications that have been superseded by observer
Suppress deprecated warnings in all modules that call 'gs'
Deprecate the gs application
Mark doc_builder as removed (and not merely deprecated)
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/otp_internal.erl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl index 7bacc05ff2..6e8af0f3f6 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -337,11 +337,11 @@ obsolete_1(public_key, decode_private_key, A) when A =:= 1; A =:= 2 -> %% Added in R14B03. obsolete_1(docb_gen, _, _) -> - {deprecated,"the DocBuilder application is deprecated (will be removed in R15B)"}; + {removed,"the DocBuilder application was removed in R15B"}; obsolete_1(docb_transform, _, _) -> - {deprecated,"the DocBuilder application is deprecated (will be removed in R15B)"}; + {removed,"the DocBuilder application was removed in R15B"}; obsolete_1(docb_xml_check, _, _) -> - {deprecated,"the DocBuilder application is deprecated (will be removed in R15B)"}; + {removed,"the DocBuilder application was removed in R15B"}; %% Added in R15B obsolete_1(asn1rt, F, _) when F == load_driver; F == unload_driver -> @@ -350,6 +350,11 @@ obsolete_1(ssl, pid, 1) -> {deprecated,"deprecated (will be removed in R17); is no longer needed"}; obsolete_1(inviso, _, _) -> {deprecated,"the inviso application has been deprecated and will be removed in R16"}; + +%% Added in R15B01. +obsolete_1(gs, _, _) -> + {deprecated,"the gs application has been deprecated and will be removed in R16; use the wx application instead"}; + obsolete_1(_, _, _) -> no. |