]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/constructions/harbors/class_Harbor.php
More style convensions applied, interface updated
[shipsimu.git] / application / ship-simu / main / constructions / harbors / class_Harbor.php
index e414118b714c4811de8f38a208469c5ad252a447..8922c42a936e1c54a0f70fcee17d0375c4567317 100644 (file)
@@ -39,9 +39,6 @@ class Harbor extends BaseConstruction {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
-               // Debug message
-               if (((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output("[Harbor:] Konstruktor erreicht.<br />\n");
-
                // Set description
                $this->setObjectDescription("Hafen");
 
@@ -113,23 +110,6 @@ class Harbor extends BaseConstruction {
                // Werft generieren und in die Werftliste aufnehmen
                $this->shipyardList->append(Shipyard::createShipyard($this, $shipyardName));
        }
-
-       /**
-        * Stub!
-        */
-       public function saveObjectToDatabase () {
-               $this->getDebugInstance()->output(sprintf("[%s:] Stub <strong>%s</strong> erreicht.",
-                       $this->__toString(),
-                       __FUNCTION__
-               ));
-       }
-
-       /**
-        * Limits this object with an ObjectLimits instance
-        */
-       public function limitObject (ObjectLimits $limitInstance) {
-               ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!");
-       }
 }
 
 // [EOF]