]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/class_Merchant.php
More style convensions applied, interface updated
[shipsimu.git] / application / ship-simu / main / class_Merchant.php
index ce657135918dda52f1bcd184d39daae0c801c6c5..24d21b6a093b9f24dd27f3c78d64b186ecacc535 100644 (file)
@@ -36,14 +36,6 @@ class Merchant extends BaseFrameworkSystem {
                // Call parent constructor
                parent::__construct(__CLASS__);
 
-               // Debug message
-               if (((defined('DEBUG_MERCHANT')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
-                       $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
-                               __CLASS__,
-                               __LINE__
-                       ));
-               }
-
                // Set description
                $this->setObjectDescription("H&auml;ndler");
 
@@ -192,16 +184,6 @@ class Merchant extends BaseFrameworkSystem {
                // Return price
                return $price;
        }
-
-       /**
-        * Stub!
-        */
-       public function saveObjectToDatabase () {
-               $this->getDebugInstance()->output(sprintf("[%s:] Stub <strong>%s</strong> erreicht.",
-                       $this->__toString(),
-                       __FUNCTION__
-               ));
-       }
 }
 
 // [EOF]