]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/virgin/class_NodeVirginState.php
Continued with hub:
[hub.git] / application / hub / main / states / node / virgin / class_NodeVirginState.php
index 2755250dfbe201153014aaf62a9413c958a92a47..b114920e0c7052dff3cea3abd3dd44cb1c66e9a7 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A virgin node state class
  *
- * @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 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 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
@@ -45,9 +45,6 @@ class NodeVirginState extends BaseNodeState implements Stateable {
                // Get new instance
                $stateInstance = new NodeVirginState();
 
-               // Debug message
-               $stateInstance->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
-
                // Set the node instance
                $stateInstance->setNodeInstance($nodeInstance);
 
@@ -65,7 +62,7 @@ class NodeVirginState extends BaseNodeState implements Stateable {
         */
        public function nodeIsActivated () {
                // Create the new state instance
-               StateFactory::createStateInstanceByName('active', $this->getNodeInstance());
+               NodeStateFactory::createNodeStateInstanceByName('active', $this->getNodeInstance());
        }
 
 }