Merge branch 'master' into gc

This commit is contained in:
Daniella 2022-06-26 04:51:56 +02:00
commit c325c792a2

View file

@ -1810,8 +1810,9 @@ public class ISBPL {
String w = word.toString();
while(w.startsWith("(") && w.length() > 1)
w = w.substring(1);
while(w.endsWith(")") && w.length() > 1)
w = w.substring(0, w.length() - 1);
if(!w.startsWith("\""))
while(w.endsWith(")") && w.length() > 1)
w = w.substring(0, w.length() - 1);
words.add(w);
word = new StringBuilder();
}
@ -1822,8 +1823,9 @@ public class ISBPL {
String w = word.toString();
while(w.startsWith("(") && w.length() > 1)
w = w.substring(1);
while(w.endsWith(")") && w.length() > 1)
w = w.substring(0, w.length() - 1);
if(!w.startsWith("\""))
while(w.endsWith(")") && w.length() > 1)
w = w.substring(0, w.length() - 1);
words.add(w);
ArrayList<String> cleanWords = new ArrayList<>();