diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-03-17 20:18:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 20:18:11 +0100 |
commit | f56e5bb0dbf42690c5dcc9ba43f4cad853ff5a83 (patch) | |
tree | 756f967efe04ef018fdc097aaf13cec7600e792f /lib/public | |
parent | f1fefd91dff68382e0675e42acbd02f4bb415eb8 (diff) | |
parent | 7f3051e5bf2cab6e98dc566ac290a75781c7401d (diff) | |
download | nextcloud-server-f56e5bb0dbf42690c5dcc9ba43f4cad853ff5a83.tar.gz nextcloud-server-f56e5bb0dbf42690c5dcc9ba43f4cad853ff5a83.zip |
Merge pull request #25676 from nextcloud/drop/utl-is-ie
Drop \OCP\Util::isIe
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Util.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php index 7cecb6bf86b..3281c9cceec 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -521,14 +521,4 @@ class Util { } return self::$needUpgradeCache; } - - /** - * is this Internet explorer ? - * - * @return boolean - * @since 14.0.0 - */ - public static function isIe() { - return \OC_Util::isIe(); - } } |