diff options
author | David <ottodavid@gmx.net> | 2015-08-08 22:48:07 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2015-08-09 09:44:04 +0200 |
commit | 92ee7558c6b6dd2461b645cb1f19a81ef8c50db5 (patch) | |
tree | c0cad47bd972c6b2c2b38fb144a417268e1bbd5a /framework/Web/UI/TPage.php | |
parent | 835e3f8c3a68b5a4577b0e1784f0e8eb1724a525 (diff) |
Removed redundand Prado::using statements
Diffstat (limited to 'framework/Web/UI/TPage.php')
-rw-r--r-- | framework/Web/UI/TPage.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index e768f900..17dc7c6b 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -310,7 +310,6 @@ class TPage extends TTemplateControl */ protected function processCallbackRequest($writer) { - Prado::using('Prado\Web\UI\ActiveControls\TActivePageAdapter'); $this->setAdapter(new TActivePageAdapter($this)); @@ -598,7 +597,6 @@ class TPage extends TTemplateControl { if(!$this->_clientScript) { $className = $classPath = $this->getService()->getClientScriptManagerClass(); - Prado::using($className); if($className!=='\Prado\Web\UI\TClientScriptManager' && !is_subclass_of($className,'\Prado\Web\UI\TClientScriptManager')) throw new THttpException(404,'page_csmanagerclass_invalid',$className); |