diff --git a/src/Core/System.php b/src/Core/System.php index 9002c5a7b3..4451239061 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -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; + */ } /**