perf: 读取layout时 忽略#号开头文本

This commit is contained in:
octopus_yan 2024-11-18 17:36:33 +08:00
parent cb5e0229ff
commit 3cb5637972

View File

@ -307,6 +307,8 @@ public class PBOUtil {
if (StringUtils.isNoneEmpty(line) && matcher.matches()) {
// 原文
String original = matcher.group(1);
if (!original.startsWith("#")) {
// 开始下标
Integer startIndex = line.indexOf(original);
// 添加单词
@ -314,6 +316,7 @@ public class PBOUtil {
wordItems.add(new WordItem(file, lines.get(), startIndex, original, ""));
}
}
}
lines.addAndGet(1);
}