removed debug code that was showing up in quantify

git-svn-id: svn://10.0.0.236/trunk@45517 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
1999-09-01 21:22:22 +00:00
parent f6df70cc98
commit 16eca8e7d3
2 changed files with 10 additions and 2 deletions

View File

@@ -461,10 +461,14 @@ public:
void CTokenRecycler::RecycleToken(CToken* aToken) {
if(aToken) {
PRInt32 theType=aToken->GetTokenType();
mTokenCache[theType-1]->Push(aToken);
#if 0
//This should be disabled since it's only debug code.
CTokenFinder finder(aToken);
CToken* theMatch;
theMatch=(CToken*)mTokenCache[theType-1]->FirstThat(finder);
mTokenCache[theType-1]->Push(aToken);
#endif
}
}