summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2012-11-28 16:43:47 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2012-11-28 16:43:47 +0000
commiteca9f863acbe0dbeca9355cb1e14f221e72684ec (patch)
tree620c4bddcd8aea0f7483a2d8c32bd5795293f1b3 /src
parent943a738e09f5fb9bdc05dbc05c885d6e3381d0e5 (diff)
downloadrabbitmq-server-git-eca9f863acbe0dbeca9355cb1e14f221e72684ec.tar.gz
cosmetic
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_backing_queue.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rabbit_backing_queue.erl b/src/rabbit_backing_queue.erl
index 071962a57b..6315a56a33 100644
--- a/src/rabbit_backing_queue.erl
+++ b/src/rabbit_backing_queue.erl
@@ -162,8 +162,9 @@
%% Fold over all the messages in a queue and return the accumulated
%% results, leaving the queue undisturbed.
-callback fold(fun((rabbit_types:basic_message(),
- rabbit_types:message_properties(), A) ->
- {('stop' | 'cont'), A}), A, state()) -> {A, state()}.
+ rabbit_types:message_properties(),
+ A) -> {('stop' | 'cont'), A}),
+ A, state()) -> {A, state()}.
%% How long is my queue?
-callback len(state()) -> non_neg_integer().