diff options
| author | Ted Ross <tross@apache.org> | 2012-04-16 15:14:03 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2012-04-16 15:14:03 +0000 |
| commit | 516da000c80d1b63e8bb7364ed5567f6f04256ac (patch) | |
| tree | fe594f4dcf4f623dc244a86e1037832def3b896d /qpid/cpp/bindings | |
| parent | eca75e8c36f21e31caaea1303c7227518995c601 (diff) | |
| download | qpid-python-516da000c80d1b63e8bb7364ed5567f6f04256ac.tar.gz | |
QPID-3928 - Removed trailing colons in conditionals.
Applied patch from Darryl Pierce
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1326645 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bindings')
| -rw-r--r-- | qpid/cpp/bindings/qpid/ruby/lib/qpid/encoding.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qpid/cpp/bindings/qpid/ruby/lib/qpid/encoding.rb b/qpid/cpp/bindings/qpid/ruby/lib/qpid/encoding.rb index 7b9130156d..2f20fab18e 100644 --- a/qpid/cpp/bindings/qpid/ruby/lib/qpid/encoding.rb +++ b/qpid/cpp/bindings/qpid/ruby/lib/qpid/encoding.rb @@ -45,8 +45,10 @@ module Qpid content_type = message.content_type unless content_type case content_type - when "amqp/map": Cqpid.decodeMap message.message_impl - when "amqp/list": Cqpid.decodeList message.message_impl + when "amqp/map" + Cqpid.decodeMap message.message_impl + when "amqp/list" + Cqpid.decodeList message.message_impl end message.content |
