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_pro_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_pro_wx.erl')
-rw-r--r-- | lib/observer/src/observer_pro_wx.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/observer/src/observer_pro_wx.erl b/lib/observer/src/observer_pro_wx.erl index e2f3ddb02b..ee67664539 100644 --- a/lib/observer/src/observer_pro_wx.erl +++ b/lib/observer/src/observer_pro_wx.erl @@ -258,8 +258,7 @@ terminate(_Reason, #state{holder=Holder}) -> ok. code_change(_, _, State) -> - {stop, not_yet_implemented, State}. - + {ok, State}. handle_call(Msg, _From, State) -> io:format("~p:~p: Unhandled call ~p~n",[?MODULE, ?LINE, Msg]), |