]> granicus.if.org Git - ejabberd/commitdiff
Remove useless type specs
authorEvgeny Khramtsov <ekhramtsov@process-one.net>
Tue, 18 Sep 2018 10:24:06 +0000 (13:24 +0300)
committerEvgeny Khramtsov <ekhramtsov@process-one.net>
Tue, 18 Sep 2018 10:24:06 +0000 (13:24 +0300)
src/ejabberd_c2s.erl
src/ejabberd_s2s_in.erl
src/ejabberd_service.erl

index a0255af9018154e326eff1df4dd8e48dc9020235..78eebbfb703259eaa6d39beb3715bbada7e1c084 100644 (file)
@@ -978,7 +978,6 @@ opt_type(_) ->
      c2s_protocol_options, c2s_tls_compression, resource_conflict,
      disable_sasl_mechanisms].
 
--spec listen_opt_type(atom()) -> fun((any()) -> any()) | [atom()].
 listen_opt_type(certfile = Opt) ->
     fun(S) ->
            ?WARNING_MSG("Listening option '~s' for ~s is deprecated, use "
index 9084fec973ae260f528fcc3c53606661f29d0a4e..dee01250a549135c1aff3af40b6a428ae880f9a6 100644 (file)
@@ -340,7 +340,6 @@ change_shaper(#{shaper := ShaperName, server_host := ServerHost} = State,
     Shaper = acl:match_rule(ServerHost, ShaperName, jid:make(RServer)),
     xmpp_stream_in:change_shaper(State, ejabberd_shaper:new(Shaper)).
 
--spec listen_opt_type(atom()) -> fun((any()) -> any()) | [atom()].
 listen_opt_type(certfile = Opt) ->
     fun(S) ->
            ?WARNING_MSG("Listening option '~s' for ~s is deprecated, use "
index 979d13104771ad47f7b16a54d75722236d8664b4..02302a838038747787e571cf483f7f1c971af0d3 100644 (file)
@@ -281,7 +281,6 @@ transform_listen_option({host, Host, Os}, Opts) ->
 transform_listen_option(Opt, Opts) ->
     [Opt|Opts].
 
--spec listen_opt_type(atom()) -> fun((any()) -> any()) | [atom()].
 listen_opt_type(shaper_rule) ->
     fun(V) ->
            ?WARNING_MSG("Listening option 'shaper_rule' of module ~s "