From: Roland Häder Date: Wed, 19 Aug 2009 20:54:23 +0000 (+0000) Subject: Deprecated class file/exception removed as well X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=ad5f84347e52d387bbdffca674233ae3553dfdc8;hp=976d57fe7ac564060778d10b1742d62cea5accfc Deprecated class file/exception removed as well --- diff --git a/.gitattributes b/.gitattributes index 2a4b51a8..32500e05 100644 --- a/.gitattributes +++ b/.gitattributes @@ -29,7 +29,6 @@ inc/classes/exceptions/database/.htaccess -text inc/classes/exceptions/database/class_ -text inc/classes/exceptions/database/class_DatabaseException.php -text inc/classes/exceptions/database/general/.htaccess -text -inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php -text inc/classes/exceptions/database/general/class_SqlException.php -text inc/classes/exceptions/database/local_file/.htaccess -text inc/classes/exceptions/database/local_file/class_SavePathIsEmptyException.php -text @@ -328,7 +327,6 @@ inc/classes/main/filter/change/class_PasswordChangeFilter.php -text inc/classes/main/filter/checkboxes/.htaccess -text inc/classes/main/filter/checkboxes/class_RulesAcceptedFilter.php -text inc/classes/main/filter/class_ -text -inc/classes/main/filter/class_AbstractFilterDecorator.php -text inc/classes/main/filter/class_BaseFilter.php -text inc/classes/main/filter/class_BaseFilterDecorator.php -text inc/classes/main/filter/class_FilterChain.php -text diff --git a/inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php b/inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php deleted file mode 100644 index 59e76f5c..00000000 --- a/inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php +++ /dev/null @@ -1,46 +0,0 @@ - - * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team - * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org - * @deprecated - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -class DatabaseUpdateSupportException extends DatabaseException { - /** - * The constructor - * - * @param $class Class trying the invalid database update - * @param $code Code number for the exception - * @return void - */ - public function __construct (FrameworkInterface $class, $code) { - // Generate message - $message = sprintf("[%s:%d] Database updated not allowed for this class.", - $class->__toString(), - $this->getLine() - ); - - // Just call the parent constructor - parent::__construct($message, $code); - } -} - -// [EOF] -?> diff --git a/inc/classes/main/filter/class_AbstractFilterDecorator.php b/inc/classes/main/filter/class_AbstractFilterDecorator.php deleted file mode 100644 index adae8d19..00000000 --- a/inc/classes/main/filter/class_AbstractFilterDecorator.php +++ /dev/null @@ -1,4 +0,0 @@ -