changed not_implemented to a function
This commit is contained in:
parent
63170fd0de
commit
62be1f04cc
3 changed files with 18 additions and 14 deletions
|
@ -20,12 +20,12 @@
|
|||
%% Port = Integer
|
||||
%% Pid = #<Pid>
|
||||
start_link(Port) ->
|
||||
not_implemented.
|
||||
not_implemented().
|
||||
|
||||
%% @doc Stops the dispatcher with the specified reason.
|
||||
%% @spec stop(Reason) -> ok.
|
||||
%% Reason = String
|
||||
stop(Reason) -> not_implemented.
|
||||
stop(Reason) -> not_implemented().
|
||||
|
||||
|
||||
%% gen_server callbacks
|
||||
|
|
Reference in a new issue