Fix local copy of case-conversion which is no longer necessary, from bug 337730

git-svn-id: svn://10.0.0.236/trunk@198063 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
benjamin%smedbergs.us
2006-05-19 23:37:56 +00:00
parent 9bcf1a7999
commit 59bab4a733

View File

@@ -175,15 +175,6 @@ static const char* kJavaKeywords[] = {
"notify" , "notifyAll", /*"toString" ,*/ "wait"
};
static void ToUpperCase(nsACString& aString)
{
char *buf;
PRUint32 len = NS_CStringGetMutableData(aString, PR_UINT32_MAX, &buf);
for (char *end = buf + len; buf < end; ++buf)
*buf = toupper(*buf);
}
#ifdef WRITE_NOSCRIPT_METHODS
// SWT uses [noscript] methods of the following interfaces, so we need to
// output the [noscript] methods for these interfaces.