DBG: remove \\n replacement in string formatting
This commit is contained in:
parent
15b0e73ba0
commit
d67031a089
|
@ -173,7 +173,6 @@ static String handleFormatString(const String & formatString, const FormatValueV
|
|||
|
||||
String stringformat(String format, const FormatValueVector & values)
|
||||
{
|
||||
StringUtils::ReplaceAll(format, "\\n", "\n");
|
||||
int len = (int)format.length();
|
||||
String output;
|
||||
String formatString;
|
||||
|
@ -247,7 +246,6 @@ static String handleFormatStringInline(const String & formatString)
|
|||
|
||||
String stringformatinline(String format)
|
||||
{
|
||||
StringUtils::ReplaceAll(format, "\\n", "\n");
|
||||
int len = (int)format.length();
|
||||
String output;
|
||||
String formatString;
|
||||
|
|
Loading…
Reference in New Issue