remove printf which was printing a char * file path passed into NSRegisterSelf. This file path is base 64

encoded alias handle on the mac and looks bogus when you print it out.
This commit is contained in:
mscott%netscape.com 1999-06-28 20:14:10 +00:00
parent 91e7c3fb5e
commit 9904b84b28
2 changed files with 0 additions and 9 deletions

View File

@ -469,10 +469,6 @@ NSRegisterSelf(nsISupports* aServMgr, const char* path)
path, PR_TRUE, PR_TRUE);
if (NS_FAILED(rv)) finalResult = rv;
#ifdef NS_DEBUG
printf("mailnews registering from %s\n",path);
#endif
return finalResult;
}

View File

@ -293,11 +293,6 @@ extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports* aServMgr, const char*
"Xcomponent://netscape/messengercompose/smtp",
path, PR_TRUE, PR_TRUE);
if (NS_FAILED(rv)) finalResult = rv;
#ifdef NS_DEBUG
printf("Message Compose registering from %s\n",path);
#endif
return finalResult;
}