From 16125cfdeb5c7310278bb83d15b1cfab8c83343a Mon Sep 17 00:00:00 2001 From: James Quinley Date: Sat, 17 Sep 2022 22:59:50 -0700 Subject: [PATCH] Removes filter for comma, since it is used in the documents. --- .../com/jamesquinley/DelegationServices/delegationServices.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/jamesquinley/DelegationServices/delegationServices.java b/src/main/java/com/jamesquinley/DelegationServices/delegationServices.java index 200636f..ab8e1e9 100644 --- a/src/main/java/com/jamesquinley/DelegationServices/delegationServices.java +++ b/src/main/java/com/jamesquinley/DelegationServices/delegationServices.java @@ -1423,7 +1423,6 @@ public class delegationServices { byte[] bytes = Files.readAllBytes(path); List allLines = Files.readAllLines(path, StandardCharsets.UTF_8); String formattedString = allLines.toString() - .replace(",", "") //remove the commas .replace("[", "") //remove the right bracket .replace("]", "") //remove the left bracket .trim(); //remove trailing spaces from partially initialized arrays @@ -1463,7 +1462,6 @@ public class delegationServices { byte[] bytes = Files.readAllBytes(path); List allLines = Files.readAllLines(path, StandardCharsets.UTF_8); String formattedString = allLines.toString() - .replace(",", "") //remove the commas .replace("[", "") //remove the right bracket .replace("]", "") //remove the left bracket .trim(); //remove trailing spaces from partially initialized arrays