X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fregistry%2Fobjects%2Fclass_ObjectTypeRegistry.php;h=980687afd62c2edc5ae88642e0be1d4b40a123fa;hb=62f2546efa5ec7585c5ce216e6a9676595b1b30b;hp=4dd5b4df62b6686d25caffcf7f986a316d4c0fc5;hpb=1212b8422d9040c36c355c2c81c689dda7fd79ad;p=hub.git diff --git a/application/hub/main/registry/objects/class_ObjectTypeRegistry.php b/application/hub/main/registry/objects/class_ObjectTypeRegistry.php index 4dd5b4df6..980687afd 100644 --- a/application/hub/main/registry/objects/class_ObjectTypeRegistry.php +++ b/application/hub/main/registry/objects/class_ObjectTypeRegistry.php @@ -2,11 +2,11 @@ /** * A ObjectType registry * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * 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 @@ -25,7 +25,7 @@ class ObjectTypeRegistry extends BaseRegistry implements Register { /** * Instance of this class */ - private static $registryInstance = null; + private static $registryInstance = NULL; /** * Protected constructor @@ -52,19 +52,6 @@ class ObjectTypeRegistry extends BaseRegistry implements Register { // Return the instance return self::$registryInstance; } - - /** - * Getter for iterator instance from this registry - * - * @return $iteratorInstance An instance of a Iterator class - */ - public function getIterator () { - // Prepare a default iterator - $iteratorInstance = ObjectFactory::createObjectByConfiguredName('object_type_iterator_class', array($this)); - - // And return it - return $iteratorInstance; - } } // [EOF]