format: adjust format of toString

This commit is contained in:
dancingCycle 2022-02-04 08:30:13 -05:00
parent 176fdac467
commit c5848854d4
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ public class Communication {
public String toString() {
String ccString = "Communication{";
ccString += header != null ? "header=" + header : "";
ccString += telegram != null ? "telegram=" + telegram : "";
ccString += telegram != null ? ", telegram=" + telegram : "";
ccString += '}';
return ccString;