Skip to content

Commit 55577dd

Browse files
author
Matthias Radestock
committed
tidying up
1 parent c3bbb38 commit 55577dd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/com/rabbitmq/client/impl/ContentHeaderPropertyReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void readFlagWord() throws IOException {
7171
// FIXME: Proper exception class!
7272
throw new IOException("Attempted to read flag word when none advertised");
7373
}
74-
flagWord = in.readShort(); //FIXME: should this be read as a signedShort?
74+
flagWord = in.readShort();
7575
bitCount = 0;
7676
}
7777

test/src/com/rabbitmq/client/test/functional/Tables.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ public void testTypes() throws IOException {
7474
channel.basicPublish("", q, props, "".getBytes());
7575
BasicProperties rProps = channel.basicGet(q, true).getProps();
7676
assertMapsEqual(props.headers, rProps.headers);
77-
// assertEquals(props.headers, rProps.headers);
78-
7977
}
8078

8179
private static void assertMapsEqual(Map<String, Object> a,

0 commit comments

Comments
 (0)