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/Data/Common/Sqlite/TSqliteTableInfo.php | |
parent | 835e3f8c3a68b5a4577b0e1784f0e8eb1724a525 (diff) |
Removed redundand Prado::using statements
Diffstat (limited to 'framework/Data/Common/Sqlite/TSqliteTableInfo.php')
-rw-r--r-- | framework/Data/Common/Sqlite/TSqliteTableInfo.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/framework/Data/Common/Sqlite/TSqliteTableInfo.php b/framework/Data/Common/Sqlite/TSqliteTableInfo.php index f0143810..aa2272af 100644 --- a/framework/Data/Common/Sqlite/TSqliteTableInfo.php +++ b/framework/Data/Common/Sqlite/TSqliteTableInfo.php @@ -17,8 +17,6 @@ namespace Prado\Data\Common\Sqlite; use Prado\Data\Common\TDbTableInfo; use Prado\Prado; -Prado::using('System.Data.Common.TDbTableInfo'); -Prado::using('System.Data.Common.Sqlite.TSqliteTableColumn'); /** * TSqliteTableInfo class provides additional table information for PostgreSQL database. @@ -35,7 +33,6 @@ class TSqliteTableInfo extends TDbTableInfo */ public function createCommandBuilder($connection) { - Prado::using('System.Data.Common.Sqlite.TSqliteCommandBuilder'); return new TSqliteCommandBuilder($connection,$this); } |