Skip to content

Commit

Permalink
#1934 P25P1 conventional fallback message toString() output fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Sheirer committed Jun 2, 2024
1 parent 14a7b04 commit 6779f50
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public String toString()
StringBuilder sb = new StringBuilder();
if(!isValid())
{
sb.append(" [CRC ERROR]");
sb.append(" [CRC ERROermR]");
}
sb.append(" CONVENTIONAL FALLBACK CHANNELS 1:").append(getFallbackChannel1());
sb.append(" 2:").append(getFallbackChannel2());
Expand All @@ -64,7 +64,7 @@ public String toString()
sb.append(" 5:").append(getFallbackChannel5());
sb.append(" 6:").append(getFallbackChannel6());

return super.toString();
return sb.toString();
}

public int getFallbackChannel1()
Expand Down

0 comments on commit 6779f50

Please sign in to comment.