Removed commas again.

This commit is contained in:
James Quinley 2022-09-19 20:26:01 -07:00
parent 69d5f62cbc
commit 7d35020a53

View File

@ -1417,6 +1417,7 @@ public class delegationServices {
String formattedString = allLines.toString()
.replace("[", "") //remove the right bracket
.replace("]", "") //remove the left bracket
.replace(",", "")
.trim(); //remove trailing spaces from partially initialized arrays
policyDocument = formattedString;
}
@ -1456,6 +1457,7 @@ public class delegationServices {
String formattedString = allLines.toString()
.replace("[", "") //remove the right bracket
.replace("]", "") //remove the left bracket
.replace(",", "")
.trim(); //remove trailing spaces from partially initialized arrays
policyDocument = formattedString;
}