Skip to content

Commit

Permalink
Merge branch 'anders/diameter/R15B02_release' into maint
Browse files Browse the repository at this point in the history
* anders/diameter/R15B02_release:
  Dialyzer spec fix

OTP-10243
  • Loading branch information
Anders Svensson committed Aug 30, 2012
2 parents 038c1a9 + 768564e commit e82402b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/diameter/src/base/diameter.erl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2010-2011. All Rights Reserved.
%% Copyright Ericsson AB 2010-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
Expand Down Expand Up @@ -323,10 +323,11 @@ call(SvcName, App, Message) ->
%% Predicate passed to remove_transport/2

-type transport_pred()
:: fun((reference(), connect|listen, list()) -> boolean())
| fun((reference(), list()) -> boolean())
:: fun((transport_ref(), connect|listen, list()) -> boolean())
| fun((transport_ref(), list()) -> boolean())
| fun((list()) -> boolean())
| reference()
| transport_ref()
| boolean()
| list()
| {connect|listen, transport_pred()}
| {atom(), atom(), list()}.
Expand Down

0 comments on commit e82402b

Please sign in to comment.