Skip to content

Commit

Permalink
[2.0.9] Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsFlicker committed Nov 26, 2023
1 parent ec43085 commit 7353708
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ public static FilteredObject doFilter(String src) {
markNum = 0;
}
k = i;
curry = curr;
// curry = curr; // 无法屏蔽重复字符
while (++k < length) {
int temp = charConvert(chs[k]);
if (temp == curry) {
continue;
}
// if (temp == curry) {
// continue;
// }
if (PUNCTUATIONS_SET.contains(temp)) {
continue;
}
Expand Down

0 comments on commit 7353708

Please sign in to comment.