diff options
author | Dan Gudmundsson <[email protected]> | 2012-06-28 10:27:33 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-06-28 10:27:33 +0200 |
commit | 3af8c55fb68b7047ff1f8c333528167c875c2cbc (patch) | |
tree | 660a4b7d8e96d30142c270ca29e8dc11e88b1882 /lib/observer/src/observer_trace_wx.erl | |
parent | 2f21ad26a9f3000d62660edde22874603aa2baaa (diff) | |
download | otp-3af8c55fb68b7047ff1f8c333528167c875c2cbc.tar.gz otp-3af8c55fb68b7047ff1f8c333528167c875c2cbc.tar.bz2 otp-3af8c55fb68b7047ff1f8c333528167c875c2cbc.zip |
[observer] Fix dialyser warnings
Diffstat (limited to 'lib/observer/src/observer_trace_wx.erl')
-rw-r--r-- | lib/observer/src/observer_trace_wx.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/observer/src/observer_trace_wx.erl b/lib/observer/src/observer_trace_wx.erl index d0b6a1e063..f2a1084f85 100644 --- a/lib/observer/src/observer_trace_wx.erl +++ b/lib/observer/src/observer_trace_wx.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2011. All Rights Reserved. +%% Copyright Ericsson AB 2011-2012. 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 @@ -489,7 +489,7 @@ terminate(_Reason, #state{nodes=_Nodes}) -> ok. code_change(_, _, State) -> - {stop, not_yet_implemented, State}. + {ok, State}. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% do_add_patterns({Module, NewPs}, State=#state{tpatterns=TPs0, m_view=Mview, f_view=Fview}) -> |