Repository: qpid-broker-j Updated Branches: refs/heads/master 196b27065 -> 8b5577b9d
QPID-8182: Fix typo and remove not-addressed comment Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/8b5577b9 Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/8b5577b9 Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/8b5577b9 Branch: refs/heads/master Commit: 8b5577b9d7b4224a03d08ba2240153bd981fb0ab Parents: 196b270 Author: Alex Rudyy <[email protected]> Authored: Fri May 11 13:53:42 2018 +0100 Committer: Alex Rudyy <[email protected]> Committed: Fri May 11 13:53:42 2018 +0100 ---------------------------------------------------------------------- .../converter/v0_10_v1_0/MessageConverter_1_0_to_v0_10.java | 1 - .../converter/v0_8_v1_0/PropertyConverter_0_8_to_1_0Test.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/8b5577b9/broker-plugins/amqp-msg-conv-0-10-to-1-0/src/main/java/org/apache/qpid/server/protocol/converter/v0_10_v1_0/MessageConverter_1_0_to_v0_10.java ---------------------------------------------------------------------- diff --git a/broker-plugins/amqp-msg-conv-0-10-to-1-0/src/main/java/org/apache/qpid/server/protocol/converter/v0_10_v1_0/MessageConverter_1_0_to_v0_10.java b/broker-plugins/amqp-msg-conv-0-10-to-1-0/src/main/java/org/apache/qpid/server/protocol/converter/v0_10_v1_0/MessageConverter_1_0_to_v0_10.java index 3f6837b..07aeb95 100644 --- a/broker-plugins/amqp-msg-conv-0-10-to-1-0/src/main/java/org/apache/qpid/server/protocol/converter/v0_10_v1_0/MessageConverter_1_0_to_v0_10.java +++ b/broker-plugins/amqp-msg-conv-0-10-to-1-0/src/main/java/org/apache/qpid/server/protocol/converter/v0_10_v1_0/MessageConverter_1_0_to_v0_10.java @@ -418,7 +418,6 @@ public class MessageConverter_1_0_to_v0_10 implements MessageConverter<Message_1 { UUID uuid = (UUID)correlationIdObject; correlationId = longToBytes(uuid.getMostSignificantBits(), uuid.getLeastSignificantBits()); - // KW: perhaps this would be more useful as the bytes of the UUID expressed as a string? } else if (correlationIdObject instanceof UnsignedLong) { http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/8b5577b9/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_0_8_to_1_0Test.java ---------------------------------------------------------------------- diff --git a/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_0_8_to_1_0Test.java b/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_0_8_to_1_0Test.java index eb9698d..a5cc624 100644 --- a/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_0_8_to_1_0Test.java +++ b/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_0_8_to_1_0Test.java @@ -324,7 +324,7 @@ public class PropertyConverter_0_8_to_1_0Test extends UnitTestBase } @Test - public void testMessageUUiddConversion() + public void testMessageUuidConversion() { BasicContentHeaderProperties basicContentHeaderProperties = new BasicContentHeaderProperties(); final UUID messageId = UUID.randomUUID(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
