From 3a14bb200f231ecf2c576faab94974cdb865ca58 Mon Sep 17 00:00:00 2001 From: Priya Potti <59410993+Priya378@users.noreply.github.com> Date: Fri, 21 Jan 2022 19:36:48 +0530 Subject: [PATCH] Fix incorrect comment Fix incorrect comment regarding brackets in Basics.java --- src/main/java/com/rubix/core/Controllers/Basics.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/rubix/core/Controllers/Basics.java b/src/main/java/com/rubix/core/Controllers/Basics.java index fc0c02f..fd7397f 100644 --- a/src/main/java/com/rubix/core/Controllers/Basics.java +++ b/src/main/java/com/rubix/core/Controllers/Basics.java @@ -212,8 +212,8 @@ public String getBootstrap() throws IOException, JSONException { result.put("response", "Bootstrap List"); // result.put("message", "Bootstrap added: " + bootstrapId); result.put("message", BOOTSTRAPS.toString().replace(",", "") // remove the commas - .replace("[", "") // remove the right bracket - .replace("]", "") // remove the left bracket + .replace("[", "") // remove the left bracket + .replace("]", "") // remove the right bracket .trim()); result.put("ipfs-config-sync", configMatching); return result.toString();