lib: Remove superfluous return false from IdoQuery

This commit is contained in:
Eric Lippmann 2015-01-16 17:00:44 +01:00
parent e93e8f6330
commit a6861789bb
1 changed files with 0 additions and 1 deletions

View File

@ -292,7 +292,6 @@ abstract class IdoQuery extends DbQuery
$mapped = $this->getMappedField($field);
if ($mapped === null) {
return stripos($field, 'UNIX_TIMESTAMP') !== false;
return false;
}
return stripos($mapped, 'UNIX_TIMESTAMP') !== false;
}