diff --git a/src/Symfony/Component/Translation/Loader/QtTranslationsLoader.php b/src/Symfony/Component/Translation/Loader/QtTranslationsLoader.php deleted file mode 100644 index 237a3b1b4b..0000000000 --- a/src/Symfony/Component/Translation/Loader/QtTranslationsLoader.php +++ /dev/null @@ -1,30 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Translation\Loader; - -/** - * QtFileLoader loads translations from QT Translations XML files. - * - * @author Саша Стаменковић - * - * @api - * - * @deprecated Deprecated since version 2.2, to be removed in 2.3. - * Use QtFileLoader instead. - */ -class QtTranslationsLoader extends QtFileLoader -{ - public function __construct() - { - trigger_error('QtTranslationsLoader is deprecated since version 2.2 and will be removed in 2.3. Use QtFileLoader instead.', E_USER_DEPRECATED); - } -}