Deprecated class file/exception removed as well
authorRoland Häder <roland@mxchange.org>
Wed, 19 Aug 2009 20:54:23 +0000 (20:54 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 19 Aug 2009 20:54:23 +0000 (20:54 +0000)
.gitattributes
inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php [deleted file]
inc/classes/main/filter/class_AbstractFilterDecorator.php [deleted file]

index 2a4b51a85d44b077e3335f0f5f8ded93e7c97c27..32500e057a0bded6412a3df334e7a9a837f0b8c6 100644 (file)
@@ -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 (file)
index 59e76f5..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-/**
- * An exception thrown when a class tries an unallowed database update
- *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @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 <http://www.gnu.org/licenses/>.
- */
-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 (file)
index adae8d1..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-// @DEPRECATED
-die("Use BaseFilterDecorator instead.");
-?>