]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/active/class_NodeActiveState.php
Copyright notice updated
[hub.git] / application / hub / main / states / node / active / class_NodeActiveState.php
index 9f1a42ce19ce5e32eb3d2fa5d1448f3d61eaed6f..d73bc99008210a887277d89c12d2576ff1d675c8 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -41,13 +41,10 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         * @param       $nodeInstance   An instance of a NodeHelper class
         * @return      $stateInstance  An instance of a Stateable class
         */
-       public final static function createNodeActiveState (NodeHelper $nodeInstance) {
+       public static final function createNodeActiveState (NodeHelper $nodeInstance) {
                // Get new instance
                $stateInstance = new NodeActiveState();
 
-               // Debug message
-               $stateInstance->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
-
                // Enable isActive flag in node instance
                $nodeInstance->enableIsActive();
 
@@ -65,7 +62,7 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         */
        public function nodeAnnouncedToUpperHubs () {
                // Create the new state instance
-               StateFactory::createStateInstanceByName('announced', $this->getNodeInstance());
+               NodeStateFactory::createNodeStateInstanceByName('announced', $this->getNodeInstance());
        }
 }