From b8483c582d764c6ff3676bf7567adfb423217667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Wed, 19 Jul 2017 14:06:27 +0200 Subject: [PATCH] [ticket/15253] Remove delete dir method PHPBB3-15253 --- phpBB/phpbb/storage/storage.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/phpBB/phpbb/storage/storage.php b/phpBB/phpbb/storage/storage.php index 91ff7cc5e3..f532f4d95f 100644 --- a/phpBB/phpbb/storage/storage.php +++ b/phpBB/phpbb/storage/storage.php @@ -59,9 +59,4 @@ class storage { $this->adapter->create_dir($path); } - - public function delete_dir($path) - { - $this->adapter->delete_dir($path); - } }