X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Ffactories%2Fclass_BaseFactory.php;h=98fd48ed941aa80ed0a713669a0184a82171dd8e;hp=e897950fcd74f25d8a7c7d0ccd4f4431a66defde;hb=51caaa61ae7ee017abdfd116bbd8c438451315b2;hpb=0cd57c3885f00ad77fc599e53ed2f2d5e7ac267f diff --git a/inc/classes/main/factories/class_BaseFactory.php b/inc/classes/main/factories/class_BaseFactory.php index e897950f..98fd48ed 100644 --- a/inc/classes/main/factories/class_BaseFactory.php +++ b/inc/classes/main/factories/class_BaseFactory.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -22,11 +22,6 @@ * along with this program. If not, see . */ class BaseFactory extends BaseFrameworkSystem { - /** - * An instance of the real factory class - */ - private $realFactoryInstance = null; - /** * Protected constructor * @@ -36,29 +31,6 @@ class BaseFactory extends BaseFrameworkSystem { protected function __construct ($className) { // Call parent constructor parent::__construct($className); - - // Clean up a little - $this->removeNumberFormaters(); - $this->removeSystemArray(); - } - - /** - * Setter for the *real* factory instance - * - * @param $realFactoryInstance An instance of the real factory class - * @return void - */ - public final function setRealFactoryInstance (BaseFrameworkSystem $realFactoryInstance) { - $this->realFactoryInstance = $realFactoryInstance; - } - - /** - * Getter for the *real* factory instance - * - * @return $realFactoryInstance An instance of the real factory class - */ - protected final function getRealFactoryInstance () { - return $this->realFactoryInstance; } }