Skip to content

Commit b4832f4

Browse files
author
Matthew Sackman
committed
cosmetic
1 parent c5a9b13 commit b4832f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ public String toString(boolean suppressBody){
207207
byte[] body = getContentBody();
208208
String contentStr;
209209
try {
210-
contentStr = suppressBody ? (body.length + " bytes of payload") : ("\"" + new String(body) + "\"");
210+
contentStr = suppressBody ? (body.length + " bytes of payload") :
211+
("\"" + new String(body) + "\"");
211212
} catch (Exception e) {
212213
contentStr = "|" + body.length + "|";
213214
}

0 commit comments

Comments
 (0)