Closed CorvusYe closed 1 year ago
Patch and project coverage have no change.
Comparison is base (
d8283ec
) 0.00% compared to head (ab25d48
) 0.00%.
:exclamation: Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Description
Single quote are not within the scope of StringEscapeUtils.escapeJava escape, and double quote are enabled as delimiters for string parameters to avoid the above issues.
If you still want to use the original single quote due to special processing in the project, you can use
ValueFmtFn.setParameterQuote ("'");
to preserve the original usage.单引号不在 StringEscapeUtils.escapeJava 转义的范围内, 启用双引号来作为字符串参数的界定符,从而规避上述问题。
如果项目中因为特殊的处理依然想用原来的单引号, 可用 ValueFmtFn.setParameterQuote("'"); 来保留原用法。
PR type