We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11dce89 commit 4d0ba6dCopy full SHA for 4d0ba6d
src/main/java/com/rabbitmq/client/impl/ValueReader.java
@@ -217,7 +217,9 @@ static Object readFieldValue(DataInputStream in)
217
}
218
219
/** Read an unsigned int */
220
- private static long readUnsignedInt(DataInputStream in) throws IOException {
+ private static long readUnsignedInt(DataInputStream in)
221
+ throws IOException
222
+ {
223
long ch1 = in.read();
224
long ch2 = in.read();
225
long ch3 = in.read();
0 commit comments