1
0
Fork 0

DBG: remove \\n replacement in string formatting

This commit is contained in:
Mack Stump 2017-11-07 14:23:25 -05:00 committed by Duncan Ogilvie
parent 15b0e73ba0
commit d67031a089
1 changed files with 0 additions and 2 deletions

View File

@ -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;