bugfix for a-chung apostrophes
This commit is contained in:
parent
117475a161
commit
f181eb3957
1 changed files with 3 additions and 2 deletions
|
@ -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 ) )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue