Cleared some dump statements

This commit is contained in:
racham%netscape.com 1999-06-12 00:52:55 +00:00
parent 1b21b35d6b
commit c1145b1034

View File

@ -8,7 +8,7 @@
xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns:rdf="http://www.w3.org/TR/WD-rdf-syntax#" xmlns:rdf="http://www.w3.org/TR/WD-rdf-syntax#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="CreateProfile Wizard"> title="Profile Manager">
<html:script> <html:script>
@ -17,12 +17,12 @@ var profileCore = XPAppCoresManager.Find("ProfileCore");
if (!profileCore) if (!profileCore)
{ {
dump("!profileCore\n"); //dump("!profileCore\n");
profileCore = new ProfileCore(); profileCore = new ProfileCore();
dump("!profileCore\n"); //dump("!profileCore\n");
if (profileCore) { if (profileCore) {
dump("after ! yes profileCore in if loop\n"); //dump("after ! yes profileCore in if loop\n");
profileCore.Init("ProfileCore"); profileCore.Init("ProfileCore");
} }
else { else {
@ -32,7 +32,7 @@ if (!profileCore)
function GetProfileCore() function GetProfileCore()
{ {
dump("****************In GetProfileCore\n"); //dump("****************In GetProfileCore\n");
return profileCore; return profileCore;
} }
@ -41,15 +41,15 @@ function GetProfileCore()
function SetProfileName(profName) function SetProfileName(profName)
{ {
dump("****************In SetProfileName\n"); //dump("****************In SetProfileName\n");
dump("********************************ProfileName: "+profName+"\n"); //dump("********************************ProfileName: "+profName+"\n");
curProfileName = profName; curProfileName = profName;
} }
function GetProfileName() function GetProfileName()
{ {
dump("****************In GetProfileName\n"); //dump("****************In GetProfileName\n");
dump("********************************ProfileName: "+curProfileName+"\n"); //dump("********************************ProfileName: "+curProfileName+"\n");
return curProfileName; return curProfileName;
} }