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/I18N | |
parent | 835e3f8c3a68b5a4577b0e1784f0e8eb1724a525 (diff) |
Removed redundand Prado::using statements
Diffstat (limited to 'framework/I18N')
-rw-r--r-- | framework/I18N/TChoiceFormat.php | 2 | ||||
-rw-r--r-- | framework/I18N/TDateFormat.php | 2 | ||||
-rw-r--r-- | framework/I18N/TNumberFormat.php | 2 | ||||
-rw-r--r-- | framework/I18N/TTranslate.php | 1 | ||||
-rw-r--r-- | framework/I18N/Translation.php | 1 |
5 files changed, 0 insertions, 8 deletions
diff --git a/framework/I18N/TChoiceFormat.php b/framework/I18N/TChoiceFormat.php index 830ab3ef..8b820531 100644 --- a/framework/I18N/TChoiceFormat.php +++ b/framework/I18N/TChoiceFormat.php @@ -17,8 +17,6 @@ namespace Prado\I18N; use Prado\I18N\core\ChoiceFormat; use Prado\Prado; -Prado::using('System.I18N.core.ChoiceFormat'); -Prado::using('System.I18N.TTranslate'); /** * TChoiceFormat class. diff --git a/framework/I18N/TDateFormat.php b/framework/I18N/TDateFormat.php index 48e1ae75..11a473f1 100644 --- a/framework/I18N/TDateFormat.php +++ b/framework/I18N/TDateFormat.php @@ -17,12 +17,10 @@ namespace Prado\I18N; use Prado\I18N\core\DateFormat; use Prado\Prado; -Prado::using('System.I18N.core.DateFormat'); /** * Get the parent control class. */ -Prado::using('System.I18N.TI18NControl'); /** * To format dates and/or time according to the current locale use diff --git a/framework/I18N/TNumberFormat.php b/framework/I18N/TNumberFormat.php index c452ad56..7b114afb 100644 --- a/framework/I18N/TNumberFormat.php +++ b/framework/I18N/TNumberFormat.php @@ -18,12 +18,10 @@ use Prado\Exceptions\TInvalidDataValueException; use Prado\I18N\core\NumberFormat; use Prado\Prado; -Prado::using('System.I18N.core.NumberFormat'); /** * Get the parent control class. */ -Prado::using('System.I18N.TI18NControl'); /** * To format numbers in locale sensitive manner use diff --git a/framework/I18N/TTranslate.php b/framework/I18N/TTranslate.php index a4c8d7ce..9d4ffb2b 100644 --- a/framework/I18N/TTranslate.php +++ b/framework/I18N/TTranslate.php @@ -20,7 +20,6 @@ use Prado\Prado; use Prado\TPropertyValue; use Prado\Web\UI\TControl; -Prado::using('System.I18N.TI18NControl'); /** * TTranslate class. diff --git a/framework/I18N/Translation.php b/framework/I18N/Translation.php index 3a58b54b..d26665c6 100644 --- a/framework/I18N/Translation.php +++ b/framework/I18N/Translation.php @@ -20,7 +20,6 @@ use Prado\I18N\core\MessageSource; use Prado\Prado; use Prado\TPropertyValue; -Prado::using('System.I18N.core.MessageFormat'); /** |