提交 3f974a5b 编写于 作者: S ShadelessFox

#11027 Use space instead of pipe if 'in-between' separators are disabled


Former-commit-id: 5d3d4f1e
上级 daf2dccd
......@@ -167,8 +167,8 @@ public class DataExporterTXT extends StreamExporterAbstract {
}
}
if (index < length - 1 && delimBetween) {
sb.append('|');
if (index < length - 1) {
sb.append(delimBetween ? '|' : ' ');
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册