diff options
author | Hans Bolinder <[email protected]> | 2015-04-27 08:31:38 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-04-27 08:31:38 +0200 |
commit | 19c7d1f88c8d393ee6b9ba82b36389f01b5c0372 (patch) | |
tree | f434b07676f860bbf339f5d6808048246a0cdbbf /lib/dialyzer/src/dialyzer_analysis_callgraph.erl | |
parent | 39ce3a33b8d692608850d4bd3a0bf078359b3c91 (diff) | |
parent | 51982dfa96c98b91531d0a13e1350f2fef06b845 (diff) | |
download | otp-19c7d1f88c8d393ee6b9ba82b36389f01b5c0372.tar.gz otp-19c7d1f88c8d393ee6b9ba82b36389f01b5c0372.tar.bz2 otp-19c7d1f88c8d393ee6b9ba82b36389f01b5c0372.zip |
Merge branch 'hb/dialyzer/new_options/OTP-12682'
* hb/dialyzer/new_options/OTP-12682:
dialyzer: Add new option 'unknown'
dialyzer: Add new option 'no_missing_calls'
Diffstat (limited to 'lib/dialyzer/src/dialyzer_analysis_callgraph.erl')
-rw-r--r-- | lib/dialyzer/src/dialyzer_analysis_callgraph.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/dialyzer/src/dialyzer_analysis_callgraph.erl b/lib/dialyzer/src/dialyzer_analysis_callgraph.erl index 5ff7ad9c6f..dbfe680345 100644 --- a/lib/dialyzer/src/dialyzer_analysis_callgraph.erl +++ b/lib/dialyzer/src/dialyzer_analysis_callgraph.erl @@ -2,7 +2,7 @@ %%-------------------------------------------------------------------- %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2006-2014. All Rights Reserved. +%% Copyright Ericsson AB 2006-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -586,7 +586,8 @@ send_codeserver_plt(Parent, CServer, Plt ) -> send_bad_calls(Parent, BadCalls, CodeServer) -> FormatedBadCalls = format_bad_calls(BadCalls, CodeServer, []), - send_warnings(Parent, FormatedBadCalls). + Warnings = filter_warnings(FormatedBadCalls, CodeServer), + send_warnings(Parent, Warnings). send_mod_deps(Parent, ModuleDeps) -> Parent ! {self(), mod_deps, ModuleDeps}, |