From 8621bf631bda644f1bf665c3ef4b18d53249732b Mon Sep 17 00:00:00 2001 From: coolGi2007 Date: Sat, 23 Apr 2022 19:29:40 +1000 Subject: [PATCH] fixed a bug with a single comma not deleting --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 08708a32a..fd54456d2 100644 --- a/build.gradle +++ b/build.gradle @@ -211,12 +211,12 @@ allprojects { p -> authorCounter = !authorCounter if (!authorCounter) { currentAuthor = currentAuthor.substring(0, currentAuthor.length() - 1); // Delete the qotation mark at the end of the authors name - quiltAuthors = quiltAuthors + "\"" + currentAuthor + "\":\"Developer\"" + "," // Add the author to the string + quiltAuthors = quiltAuthors + "\"" + currentAuthor + "\":\"Developer\"," // Add the author to the string currentAuthor = "" } } } - quiltAuthors.substring(0, quiltAuthors.length() - 1); // Delete the final comma + quiltAuthors = quiltAuthors.substring(0, quiltAuthors.length() - 1); // Delete the final comma quiltAuthors = quiltAuthors + "}";