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