diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-09-17 14:33:50 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-09-17 14:33:50 +0100 |
| commit | b55dd7659044b4800528383b9b2fb6826df818ed (patch) | |
| tree | 6543f2536b34b3015c8ed1f0733abc44fca4c7c7 /src | |
| parent | a87901e293ca659ddf7958ef7faaeb3ee40e6f12 (diff) | |
| download | rabbitmq-server-git-b55dd7659044b4800528383b9b2fb6826df818ed.tar.gz | |
Work around what looks like a bug.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_binding.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_binding.erl b/src/rabbit_binding.erl index 8bc66940a6..12d4df990e 100644 --- a/src/rabbit_binding.erl +++ b/src/rabbit_binding.erl @@ -52,7 +52,9 @@ rabbit_types:ok_or_error(rabbit_types:amqp_error()))). -type(bindings() :: [rabbit_types:binding()]). --opaque(deletions() :: dict:dict()). +%% TODO this should really be opaque but that seems to confuse 17.1's +%% dialyzer into objecting to everything that uses it. +-type(deletions() :: dict:dict()). -spec(recover/2 :: ([rabbit_exchange:name()], [rabbit_amqqueue:name()]) -> 'ok'). |
