]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/registry/objects/class_ObjectTypeRegistry.php
Updated 'core'.
[hub.git] / application / hub / main / registry / objects / class_ObjectTypeRegistry.php
index 06cff654ca3222752736d138e7f1ff5779d63c61..8df6eb9dcffdada120f5df39e9804ac9cef2230a 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A ObjectType registry
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub 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]