| Index: Source/core/platform/text/DateTimeFormat.cpp
|
| diff --git a/Source/core/platform/text/DateTimeFormat.cpp b/Source/core/platform/text/DateTimeFormat.cpp
|
| index 6cf33d437e6d6cc5eefe9ef8dfdf8d84c3634e8f..0a02cdc0bdb9b572d5f92cc9c45ee0486dd203a4 100644
|
| --- a/Source/core/platform/text/DateTimeFormat.cpp
|
| +++ b/Source/core/platform/text/DateTimeFormat.cpp
|
| @@ -250,12 +250,12 @@ void DateTimeFormat::quoteAndAppendLiteral(const String& literal, StringBuilder&
|
| if (literal.length() <= 0)
|
| return;
|
|
|
| - if (literal.find(isASCIIAlphabetOrQuote) == notFound) {
|
| + if (literal.find(isASCIIAlphabetOrQuote) == kNotFound) {
|
| buffer.append(literal);
|
| return;
|
| }
|
|
|
| - if (literal.find('\'') == notFound) {
|
| + if (literal.find('\'') == kNotFound) {
|
| buffer.append("'");
|
| buffer.append(literal);
|
| buffer.append("'");
|
|
|