aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/util.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/legacy/util.php')
-rw-r--r--lib/private/legacy/util.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php
index 648be70cf0d..04dcb8fc896 100644
--- a/lib/private/legacy/util.php
+++ b/lib/private/legacy/util.php
@@ -382,18 +382,11 @@ class OC_Util {
}
/**
- * @description get the current installed edition of ownCloud. There is the community
- * edition that just returns an empty string and the enterprise edition
- * that returns "Enterprise".
+ * @deprecated the value is of no use anymore
* @return string
*/
public static function getEditionString() {
- if (OC_App::isEnabled('enterprise_key')) {
- return "Enterprise";
- } else {
- return "";
- }
-
+ return '';
}
/**