From cfaac0fcbc9a31f190aad052b460e98f36367943 Mon Sep 17 00:00:00 2001 From: Dennis Sheirer Date: Sat, 4 Nov 2023 07:08:47 -0400 Subject: [PATCH] #1689 Increment Build 0.6.0 Beta 3 and Remove TG/RA prefixes for Harris patch groups. --- build.gradle | 3 ++- .../java/io/github/dsheirer/identifier/patch/PatchGroup.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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();