diff options
Diffstat (limited to 'Source/WTF/wtf/text/WTFString.cpp')
-rw-r--r-- | Source/WTF/wtf/text/WTFString.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/WTF/wtf/text/WTFString.cpp b/Source/WTF/wtf/text/WTFString.cpp index 16a6a45e5..e10282de2 100644 --- a/Source/WTF/wtf/text/WTFString.cpp +++ b/Source/WTF/wtf/text/WTFString.cpp @@ -665,11 +665,6 @@ void String::split(const String& separator, bool allowEmptyEntries, Vector<Strin result.append(substring(startPos)); } -void String::split(const String& separator, Vector<String>& result) const -{ - split(separator, false, result); -} - void String::split(UChar separator, bool allowEmptyEntries, Vector<String>& result) const { result.clear(); @@ -685,11 +680,6 @@ void String::split(UChar separator, bool allowEmptyEntries, Vector<String>& resu result.append(substring(startPos)); } -void String::split(UChar separator, Vector<String>& result) const -{ - split(String(&separator, 1), false, result); -} - CString String::ascii() const { // Printable ASCII characters 32..127 and the null character are |