diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-02-18 17:39:50 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-02-18 17:39:50 +0000 |
| commit | f23ae48395675fc51bf914a4ae409d770a42d1f2 (patch) | |
| tree | 4fd8248a6585d195229c6365991a926927b7eb4a /src | |
| parent | 3eff985435a3127ce5081aeac68b9444584ee908 (diff) | |
| download | rabbitmq-server-git-f23ae48395675fc51bf914a4ae409d770a42d1f2.tar.gz | |
Don't use rabbity types.
Diffstat (limited to 'src')
| -rw-r--r-- | src/file_handle_cache.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_handle_cache.erl b/src/file_handle_cache.erl index fc1cc3f36c..7c548bdc74 100644 --- a/src/file_handle_cache.erl +++ b/src/file_handle_cache.erl @@ -260,9 +260,9 @@ -spec(transfer/1 :: (pid()) -> 'ok'). -spec(set_limit/1 :: (non_neg_integer()) -> 'ok'). -spec(get_limit/0 :: () -> non_neg_integer()). --spec(info_keys/0 :: () -> rabbit_types:info_keys()). --spec(info/0 :: () -> rabbit_types:infos()). --spec(info/1 :: (rabbit_types:info_keys()) -> rabbit_types:infos()). +-spec(info_keys/0 :: () -> [atom()]). +-spec(info/0 :: () -> [{atom(), any()}]). +-spec(info/1 :: ([atom()]) -> [{atom(), any()}]). -spec(ulimit/0 :: () -> 'infinity' | 'unknown' | non_neg_integer()). -endif. |
