Remove debug code

This commit is contained in:
Jon Evans 2022-12-02 21:55:52 -05:00
parent a5f7ecbe00
commit 3d0fcfe8af
1 changed files with 0 additions and 5 deletions

View File

@ -138,9 +138,6 @@ bool NUMERIC_EVALUATOR::Process( const wxString& aString )
m_parseFinished = false;
Token tok;
FILE* f = fopen( "C:\\Users\\jon\\log.txt", "w" );
numEval::ParseTrace( f, "parser: " );
if( aString.IsEmpty() )
{
m_parseFinished = true;
@ -160,8 +157,6 @@ bool NUMERIC_EVALUATOR::Process( const wxString& aString )
}
} while( tok.token );
fclose( f );
return !m_parseError;
}