]> git.mxchange.org Git - friendica.git/commitdiff
Removed unused code
authorPhilipp Holzer <admin@philipp.info>
Fri, 22 Feb 2019 19:24:10 +0000 (20:24 +0100)
committerPhilipp Holzer <admin@philipp.info>
Fri, 22 Feb 2019 19:24:10 +0000 (20:24 +0100)
src/App.php
src/Core/System.php

index 3df285cb385a59602ff8f0fb0952a9f736a3add4..5a8d9831d627c6d453730a4e60fe71ebd39358af 100644 (file)
@@ -197,7 +197,6 @@ class App
                $this->footerScripts[] = trim($url, '/');
        }
 
-       public $process_id;
        public $queue;
        private $scheme;
        private $hostname;
@@ -367,8 +366,6 @@ class App
                $this->loadDefaultTimezone();
 
                Core\L10n::init();
-
-               $this->process_id = Core\System::processID('log');
        }
 
        /**
index f0ed08357359f5cc75f1d3a77652085e35ca657e..69d15a176465636549913a0816f81815f5eeb985 100644 (file)
@@ -234,21 +234,6 @@ class System extends BaseObject
                }
        }
 
-       /**
-        * Generates a process identifier for the logging
-        *
-        * @param string $prefix A given prefix
-        *
-        * @return string a generated process identifier
-        */
-       public static function processID($prefix)
-       {
-               // We aren't calling any other function here.
-               // Doing so could easily create an endless loop
-               $trailer = $prefix . ':' . getmypid() . ':';
-               return substr($trailer . uniqid('') . mt_rand(), 0, 26);
-       }
-
        /**
         * Returns the current Load of the System
         *