summaryrefslogtreecommitdiffstats
path: root/lib/private/MemoryInfo.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/MemoryInfo.php')
-rw-r--r--lib/private/MemoryInfo.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/MemoryInfo.php b/lib/private/MemoryInfo.php
index 37bf98fef59..520225fc6d1 100644
--- a/lib/private/MemoryInfo.php
+++ b/lib/private/MemoryInfo.php
@@ -30,7 +30,6 @@ namespace OC;
* Helper class that covers memory info.
*/
class MemoryInfo {
-
const RECOMMENDED_MEMORY_LIMIT = 512 * 1024 * 1024;
/**
@@ -70,7 +69,7 @@ class MemoryInfo {
$memoryLimit = (int)substr($memoryLimit, 0, -1);
// intended fall trough
- switch($last) {
+ switch ($last) {
case 'g':
$memoryLimit *= 1024;
case 'm':