Removes filter for comma, since it is used in the documents.
This commit is contained in:
parent
569326293e
commit
16125cfdeb
@ -1423,7 +1423,6 @@ public class delegationServices {
|
||||
byte[] bytes = Files.readAllBytes(path);
|
||||
List<String> 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<String> 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user