diff --git a/build.gradle b/build.gradle index ed8a39037..6b58f9d1e 100644 --- a/build.gradle +++ b/build.gradle @@ -53,7 +53,8 @@ repositories { maven { url "https://jitpack.io" } } -version = '0.6.0-beta2' +//Note: this should match the GitLab release tag. +version = '0.6.0-beta-3' //Java 20 is required for this version of the Project Panama preview/incubator feature java { diff --git a/src/main/java/io/github/dsheirer/identifier/patch/PatchGroup.java b/src/main/java/io/github/dsheirer/identifier/patch/PatchGroup.java index 0dfe211b3..3234f1a08 100644 --- a/src/main/java/io/github/dsheirer/identifier/patch/PatchGroup.java +++ b/src/main/java/io/github/dsheirer/identifier/patch/PatchGroup.java @@ -166,12 +166,12 @@ public String toString() if(hasPatchedTalkgroups()) { - sb.append(" TG").append(getPatchedTalkgroupIdentifiers()); + sb.append(getPatchedTalkgroupIdentifiers()); } if(hasPatchedRadios()) { - sb.append(" RA").append(getPatchedRadioIdentifiers()); + sb.append(getPatchedRadioIdentifiers()); } return sb.toString();