Commit 092b5f16 authored by pengxin's avatar pengxin

添加\n换行符。

parent f2df2c9a
......@@ -328,6 +328,9 @@ public class DatasetCleanServiceImpl extends BaseService<DatasetClean, Long> imp
if (isFirstLine) {
jsonBuilder.append("[");
isFirstLine = false;
} else {
// Add comma before each element except the first
jsonBuilder.append("\n");
}
jsonBuilder.append(line);
}
......
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