remove dead code

The SQL query has moved into the addTokensFromDB() funtion.
This commit is contained in:
Sarah Hoffmann 2020-09-21 10:39:14 +02:00
parent c5fc12e04b
commit f8a5f2964f

View File

@ -642,12 +642,6 @@ class Geocode
$oValidTokens = new TokenList();
if (!empty($aTokens)) {
$sSQL = 'SELECT word_id, word_token, word, class, type, country_code, operator, search_name_count';
$sSQL .= ' FROM word ';
$sSQL .= ' WHERE word_token in ('.join(',', $this->oDB->getDBQuotedList($aTokens)).')';
Debug::printSQL($sSQL);
$oValidTokens->addTokensFromDB(
$this->oDB,
$aTokens,