fix bug and add crypto

This commit is contained in:
Looly
2020-07-23 12:10:58 +08:00
parent 1e22cce3a3
commit b47125c9f1
7 changed files with 140 additions and 5 deletions

View File

@@ -978,7 +978,7 @@ public class StrUtil {
String result = str(str);
if (isNotEmpty(str)) {
for (CharSequence strToRemove : strsToRemove) {
result = removeAll(str, strToRemove);
result = removeAll(result, strToRemove);
}
}
return result;