diff options
author | Richard Carlsson <[email protected]> | 2014-05-14 14:54:16 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-05-14 14:54:57 +0200 |
commit | 0dbcbea0cf52672ef1cf051c3cd7640eb7ff728e (patch) | |
tree | 9727e6c28cd5b6010cfe581442ab83061c5e38d2 /erts/emulator/beam/beam_load.c | |
parent | 4ad572a8b66df8174d92157411326aab95ee8124 (diff) | |
download | otp-0dbcbea0cf52672ef1cf051c3cd7640eb7ff728e.tar.gz otp-0dbcbea0cf52672ef1cf051c3cd7640eb7ff728e.tar.bz2 otp-0dbcbea0cf52672ef1cf051c3cd7640eb7ff728e.zip |
Remove obsolete 'imports' entry from module_info/1/2 functions
It previously always returned an empty list
and was documented to be removed.
Diffstat (limited to 'erts/emulator/beam/beam_load.c')
-rw-r--r-- | erts/emulator/beam/beam_load.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/erts/emulator/beam/beam_load.c b/erts/emulator/beam/beam_load.c index 8b3fc90826..a4e72a130a 100644 --- a/erts/emulator/beam/beam_load.c +++ b/erts/emulator/beam/beam_load.c @@ -5117,7 +5117,6 @@ erts_module_info_0(Process* p, Eterm module) BUILD_INFO(am_md5); BUILD_INFO(am_compile); BUILD_INFO(am_attributes); - BUILD_INFO(am_imports); BUILD_INFO(am_exports); BUILD_INFO(am_module); #undef BUILD_INFO @@ -5129,8 +5128,6 @@ erts_module_info_1(Process* p, Eterm module, Eterm what) { if (what == am_module) { return module; - } else if (what == am_imports) { - return NIL; } else if (what == am_md5) { return md5_of_module(p, module); } else if (what == am_exports) { |