aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/otp_internal.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-04-08 11:45:23 +0200
committerBjörn Gustavsson <[email protected]>2010-04-08 11:45:23 +0200
commit0c2be2222b411b7cb8ddedc5c549ccd54a6a62f8 (patch)
treeffae151449ec2536da97b01a9fbfd9828fe39567 /lib/stdlib/src/otp_internal.erl
parent6ba7c11891441a0a67d62d4ea278b101d53dbdbf (diff)
downloadotp-0c2be2222b411b7cb8ddedc5c549ccd54a6a62f8.tar.gz
otp-0c2be2222b411b7cb8ddedc5c549ccd54a6a62f8.tar.bz2
otp-0c2be2222b411b7cb8ddedc5c549ccd54a6a62f8.zip
Remove deprecated lists:flat_length/1
Remove lists:flat_length/1 which has never been documented or supported. It has been deprecated since R13A.
Diffstat (limited to 'lib/stdlib/src/otp_internal.erl')
-rw-r--r--lib/stdlib/src/otp_internal.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl
index 7ea7de8d58..121334ddf8 100644
--- a/lib/stdlib/src/otp_internal.erl
+++ b/lib/stdlib/src/otp_internal.erl
@@ -322,7 +322,7 @@ obsolete_1(regexp, _, _) ->
{deprecated, "the regexp module is deprecated (will be removed in R15A); use the re module instead"};
obsolete_1(lists, flat_length, 1) ->
- {deprecated,{lists,flatlength,1},"R14"};
+ {removed,{lists,flatlength,1},"R14"};
obsolete_1(ssh_sftp, connect, A) when 1 =< A, A =< 3 ->
{deprecated,{ssh_sftp,start_channel,A},"R14B"};