Commit 4077c7c7 authored by fallenstardust's avatar fallenstardust

setname文本不过滤"|"

parent 26f1296a
......@@ -130,7 +130,7 @@ public class StringManager implements Closeable {
if (line.startsWith("#") || (!line.startsWith(PRE_SYSTEM) && !line.startsWith(PRE_SETNAME))) {
continue;
}
String[] words = line.split("[\t| ]+");
String[] words = line.split("[\t ]+");
//
if (words.length >= 3) {
if (PRE_SETNAME.equals(words[0])) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment