X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fcompressor%2Fclass_NullCompressor.php;h=a8a570c581487ca464c9f05002e2f2576dbe13ee;hp=74cb5d30d62d1da28bf0ecf4971898ffba30ec46;hb=a1581e4149e08719d2520fab502971bfd05fddb6;hpb=850b08879a6e4287b9a81d70a44a973a5da2ee69 diff --git a/inc/classes/main/compressor/class_NullCompressor.php b/inc/classes/main/compressor/class_NullCompressor.php index 74cb5d3..a8a570c 100644 --- a/inc/classes/main/compressor/class_NullCompressor.php +++ b/inc/classes/main/compressor/class_NullCompressor.php @@ -31,11 +31,6 @@ class NullCompressor extends BaseFrameworkSystem implements Compressor { // Call parent constructor! parent::__construct(__CLASS__); - // Debug message - if (((defined('DEBUG_COMPRESSOR')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[%s:] Konstruktor erreicht.
\n", - $this->__toString() - )); - // Set description $this->setObjectDescription("Null-Kompressor"); @@ -96,9 +91,6 @@ class NullCompressor extends BaseFrameworkSystem implements Compressor { * @return $string Returns always "null" */ public final function getCompressorExtension () { - if ((defined('DEBUG_COMPRESSOR')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:] Dateierweiterung angefordert.
\n", - $this->__toString() - )); return "null"; } }