We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d209056 commit 9d3f349Copy full SHA for 9d3f349
src/com/yanglb/utilitys/codegen/core/translator/impl/MsgCSTranslatorImpl.java
@@ -86,9 +86,9 @@ private String convert2CSCode(String value) {
86
if(value == null) return null;
87
88
// 先替换\r\n,防止有文档只有\r或\n 后面再替换一次
89
- value = value.replaceAll("\r\n", "\\\\r\\\\n");
90
- value = value.replaceAll("\r", "\\\\r\\\\n");
91
- value = value.replaceAll("\n", "\\\\r\\\\n");
+// value = value.replaceAll("\r\n", "\\\\r\\\\n");
+// value = value.replaceAll("\r", "\\\\r\\\\n");
+// value = value.replaceAll("\n", "\\\\r\\\\n");
92
return value;
93
}
94
0 commit comments