From f13ae072f977604d1124976e7e6a305646d5fb67 Mon Sep 17 00:00:00 2001 From: "alecf%netscape.com" Date: Fri, 26 Oct 2001 02:32:46 +0000 Subject: [PATCH] fix some more stuff for bug 100214, sr=scc, r=jag get rid of ToUpper() call, since it just calls into mCaseConversion anyway git-svn-id: svn://10.0.0.236/trunk@106309 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/intl/locale/src/nsCollation.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/mozilla/intl/locale/src/nsCollation.cpp b/mozilla/intl/locale/src/nsCollation.cpp index 185a9f44655..817361323cc 100644 --- a/mozilla/intl/locale/src/nsCollation.cpp +++ b/mozilla/intl/locale/src/nsCollation.cpp @@ -164,7 +164,6 @@ nsresult nsCollation::NormalizeString(const nsAString& stringIn, nsAString& stri { if (!mCaseConversion) { stringOut = stringIn; - ToLowerCase(stringOut); // XXXjag Can this ever happen in a normal situation? } else { PRInt32 aLength = stringIn.Length();