summaryrefslogtreecommitdiff
path: root/src/rabbit_channel.erl
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-07-02 18:25:36 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-07-02 18:25:36 +0100
commite4ff8b27ba7a68cf1ace61d6f8db8ea2ddd3f846 (patch)
tree3bf5d5167bcea916492adc34324a259b3236bed1 /src/rabbit_channel.erl
parent34b1c0dc5ea524d05ae16c44014ff9d0ad192be8 (diff)
downloadrabbitmq-server-e4ff8b27ba7a68cf1ace61d6f8db8ea2ddd3f846.tar.gz
cosmetic
Diffstat (limited to 'src/rabbit_channel.erl')
-rw-r--r--src/rabbit_channel.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index c3440f84..3c2ae72d 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -414,9 +414,8 @@ handle_method(#'basic.publish'{exchange = ExchangeNameBin,
Exchange = rabbit_exchange:lookup_or_die(ExchangeName),
%% We decode the content's properties here because we're almost
%% certain to want to look at delivery-mode and priority.
- DecodedContent =
- rabbit_binary_parser:ensure_content_decoded(Content,
- rabbit_framing_amqp_0_9_1),
+ DecodedContent = rabbit_binary_parser:ensure_content_decoded(
+ Content, rabbit_framing_amqp_0_9_1),
IsPersistent = is_message_persistent(DecodedContent),
Message = #basic_message{exchange_name = ExchangeName,
routing_key = RoutingKey,