diff options
author | Björn Gustavsson <[email protected]> | 2015-12-17 07:31:03 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-12-17 07:31:03 +0100 |
commit | a985104c38d154b7d0f2eb8ccf9f8fe053b6aad5 (patch) | |
tree | ebcd62114e6925347f69704a9333ba4d5fede651 /lib/stdlib/src | |
parent | 568cd49812ff0b59b0b8f1ebfc2da588f78d55a4 (diff) | |
parent | 3131a94b5d2ce2b95aa0efb99c767e3658f24550 (diff) | |
download | otp-a985104c38d154b7d0f2eb8ccf9f8fe053b6aad5.tar.gz otp-a985104c38d154b7d0f2eb8ccf9f8fe053b6aad5.tar.bz2 otp-a985104c38d154b7d0f2eb8ccf9f8fe053b6aad5.zip |
Merge branch 'bjorn/kernel/remove-code-path-cache/OTP-13191'
* bjorn/kernel/remove-code-path-cache/OTP-13191:
Remove the code path cache in the code server
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/otp_internal.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl index 166eb3cef2..960c70f255 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -644,6 +644,8 @@ obsolete_1(httpd_conf, make_integer, 1) -> obsolete_1(random, _, _) -> {deprecated, "the 'random' module is deprecated; " "use the 'rand' module instead"}; +obsolete_1(code, rehash, 0) -> + {deprecated, "deprecated because the code path cache feature has been removed"}; obsolete_1(_, _, _) -> no. |