Comment out useless assert.

This commit is contained in:
sfraser%netscape.com 1999-06-10 21:43:08 +00:00
parent 39f7f55a63
commit 1d5f5e549a
2 changed files with 2 additions and 2 deletions

View File

@ -2919,7 +2919,7 @@ NS_IMETHODIMP
nsDocument::IncrementModCount(PRInt32 aNumMods)
{
mModCount += aNumMods;
NS_ASSERTION(mModCount >= 0, "Modification count went negative");
//NS_ASSERTION(mModCount >= 0, "Modification count went negative");
return NS_OK;
}

View File

@ -2919,7 +2919,7 @@ NS_IMETHODIMP
nsDocument::IncrementModCount(PRInt32 aNumMods)
{
mModCount += aNumMods;
NS_ASSERTION(mModCount >= 0, "Modification count went negative");
//NS_ASSERTION(mModCount >= 0, "Modification count went negative");
return NS_OK;
}