summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-14 20:49:39 +0100
committerGitHub <noreply@github.com>2018-01-14 20:49:39 +0100
commit50e4abb46b7402b2216ec461f1aff8016b56b8dc (patch)
tree380be9bc56d1e6ef9e055473c1898ef69b453cfd /lib/public
parent9e7fce7213479853a0924a265b1261a732599094 (diff)
parent5ca0ad4f678c067e4a33871f202a8cfd216a6769 (diff)
downloadnextcloud-server-50e4abb46b7402b2216ec461f1aff8016b56b8dc.tar.gz
nextcloud-server-50e4abb46b7402b2216ec461f1aff8016b56b8dc.zip
Merge pull request #7844 from nextcloud/dep_constants
Remove deprecated constants
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/Constants.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/public/Constants.php b/lib/public/Constants.php
index ca4b5fa473f..48cd5765531 100644
--- a/lib/public/Constants.php
+++ b/lib/public/Constants.php
@@ -30,27 +30,6 @@
namespace OCP;
-/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_CREATE instead */
-const PERMISSION_CREATE = 4;
-
-/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_READ instead */
-const PERMISSION_READ = 1;
-
-/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_UPDATE instead */
-const PERMISSION_UPDATE = 2;
-
-/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_DELETE instead */
-const PERMISSION_DELETE = 8;
-
-/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_SHARE instead */
-const PERMISSION_SHARE = 16;
-
-/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_ALL instead */
-const PERMISSION_ALL = 31;
-
-/** @deprecated 8.0.0 Use \OCP\Constants::FILENAME_INVALID_CHARS instead */
-const FILENAME_INVALID_CHARS = "\\/<>:\"|?*\n";
-
/**
* Class Constants
*