]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/streams/crypto/class_NullCryptoStream.php
Updated domain without a dash :(
[core.git] / inc / classes / main / streams / crypto / class_NullCryptoStream.php
index a8fb9ecdca1bf127cd92cebaf532066e4dd49e1b..79a326836eb1010bd3a03fec1f3757cb84bc68cd 100644 (file)
@@ -3,11 +3,11 @@
  * A null-encryption stream does not encrypt anything but can be used if e.e.
  * mcrypt is not installed.
  *
- * @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  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
@@ -82,7 +82,7 @@ class NullCryptoStream extends BaseStream implements EncryptableStream {
         * @throws      UnsupportedOperationException   If this method is called (which is a mistake)
         */
        public function streamData ($data) {
-               $this->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
+               self::createDebugInstance(__CLASS__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
 }