File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
src/com/rabbitmq/client/impl
test/src/com/rabbitmq/client/test/functional Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments