bugfix for a-chung apostrophes

This commit is contained in:
travismccauley 2004-07-02 12:06:06 +00:00
parent 117475a161
commit f181eb3957
1 changed files with 3 additions and 2 deletions

View File

@ -215,8 +215,9 @@ public class LexComponentRepository
Query query = null;
Iterator it = null;
String termForQuery = LexUtilities.hqlEscape( term.getTerm() );
LexLogger.debug( "Escaped term string: " + termForQuery );
/* String termForQuery = LexUtilities.hqlEscape( term.getTerm() );
LexLogger.debug( "Escaped term string: " + termForQuery ); */
String termForQuery = term.getTerm();
if ( lexQuery.getFindMode().equals( LexComponentRepository.STARTS_WITH ) )
{