removed pointless code duplication
This commit is contained in:
parent
34248921fc
commit
b6341e44b3
airtime_mvc/application/models
|
@ -394,11 +394,7 @@ SQL;
|
|||
|
||||
public function isStatic()
|
||||
{
|
||||
if ($this->block->getDbType() == "static") {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return $this->block->getDbType() == "static";
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue