Removed commas again.
This commit is contained in:
parent
69d5f62cbc
commit
7d35020a53
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user