diff options
author | Siri Hansen <[email protected]> | 2016-02-19 12:00:47 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-02-19 12:05:18 +0100 |
commit | c56cdb91d057cdb40bb79d4f49e88966c0244017 (patch) | |
tree | 3a4976ce883b357da73f7b658bbf031280c17479 /lib/stdlib/src/otp_internal.erl | |
parent | 33f8fe899ec052ab0a33566f7e9e92fadf3f0a68 (diff) | |
download | otp-c56cdb91d057cdb40bb79d4f49e88966c0244017.tar.gz otp-c56cdb91d057cdb40bb79d4f49e88966c0244017.tar.bz2 otp-c56cdb91d057cdb40bb79d4f49e88966c0244017.zip |
Remove module 'overload' from SASL
The reason is that the module is not used, and that we se no obvious
use case for it.
Diffstat (limited to 'lib/stdlib/src/otp_internal.erl')
-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 0dc2626ae8..6f546da7b8 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -650,7 +650,7 @@ obsolete_1(code, rehash, 0) -> {deprecated, "deprecated because the code path cache feature has been removed"}; obsolete_1(overload, _, _) -> - {deprecated, "deprecated; will be removed in OTP 19"}; + {removed, "removed in OTP 19"}; obsolete_1(_, _, _) -> no. |