]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/System.php
Merge pull request #11015 from MrPetovan/task/10979-frio-time-tooltip
[friendica.git] / src / Core / System.php
index 9002c5a7b370c44c0f97b543ecc55d6396632ca0..44512390617e53008b859e1f229b159c7abf566a 100644 (file)
@@ -106,6 +106,12 @@ class System
         */
        public function isMinMemoryReached(): bool
        {
+               // Deactivated, needs more investigating if this check really makes sense
+               return false;
+
+               /*
+                * Commented out to suppress static analyzer issues
+                *
                $min_memory = $this->config->get('system', 'min_memory', 0);
                if ($min_memory == 0) {
                        return false;
@@ -141,6 +147,7 @@ class System
                }
 
                return $reached;
+                */
        }
 
        /**