diff options
author | Björn Gustavsson <[email protected]> | 2010-04-08 11:47:14 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-04-08 11:47:14 +0200 |
commit | ca2b31a8246a1ae629094fe39c9dee461e61cdb3 (patch) | |
tree | a53c204a1b11dee3e2e051f525969cf048f187e6 | |
parent | 0c2be2222b411b7cb8ddedc5c549ccd54a6a62f8 (diff) | |
download | otp-ca2b31a8246a1ae629094fe39c9dee461e61cdb3.tar.gz otp-ca2b31a8246a1ae629094fe39c9dee461e61cdb3.tar.bz2 otp-ca2b31a8246a1ae629094fe39c9dee461e61cdb3.zip |
Postpone removal of concat_binary/1
concat_binary/1 has long been documented as not recommended,
but was formally deprecated as late as in R13B04. Since that
gives very little time to notice and act on the deprecation,
postpone the removal to R15.
-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 121334ddf8..0d7a0e7ebc 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -337,7 +337,7 @@ obsolete_1(ssl_pkix, decode_cert, A) when A =:= 1; A =:= 2 -> %% Added in R13B04. obsolete_1(erlang, concat_binary, 1) -> - {deprecated,{erlang,list_to_binary,1},"R14B"}; + {deprecated,{erlang,list_to_binary,1},"R15B"}; obsolete_1(_, _, _) -> no. |