removed pointless code duplication

This commit is contained in:
Rudi Grinberg 2012-11-05 10:12:03 -05:00
parent 34248921fc
commit b6341e44b3
1 changed files with 1 additions and 5 deletions
airtime_mvc/application/models

View File

@ -394,11 +394,7 @@ SQL;
public function isStatic()
{
if ($this->block->getDbType() == "static") {
return true;
} else {
return false;
}
return $this->block->getDbType() == "static";
}
/*