Skip to content

Commit 4d0ba6d

Browse files
gustfacogoluegnes
authored andcommitted
code style
(cherry picked from commit 4895aa2)
1 parent 11dce89 commit 4d0ba6d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/rabbitmq/client/impl/ValueReader.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,9 @@ static Object readFieldValue(DataInputStream in)
217217
}
218218

219219
/** Read an unsigned int */
220-
private static long readUnsignedInt(DataInputStream in) throws IOException {
220+
private static long readUnsignedInt(DataInputStream in)
221+
throws IOException
222+
{
221223
long ch1 = in.read();
222224
long ch2 = in.read();
223225
long ch3 = in.read();

0 commit comments

Comments
 (0)