2.07 global-setting reset default | 全局设置 复位默认值 fixed #19

This commit is contained in:
林万程
2022-12-11 22:09:44 +08:00
parent a37d7b86cc
commit 9c6c811eec
9 changed files with 45 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ public class DocFilter {
String[] split = LINE_SEPARATOR_PATTERN.split(text);
int lineCount = 0;
@NotNull StringBuilder sb = new StringBuilder();
for (String s : split) {
for (@NotNull String s : split) {
if (deletePrefix) {
s = DOC_PATTERN.matcher(s).replaceAll("");
}