1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 17:56:52 +02:00

[ticket/11515] Refactoring the patch.

Removing else conditions.

PHPBB3-11515
This commit is contained in:
Vishal Pandey
2017-03-14 17:19:41 +05:30
parent 4f71a75df1
commit b98acb9409
3 changed files with 3 additions and 13 deletions

View File

@@ -105,10 +105,7 @@ class flock
{
return (bool) $this->lock_fp;
}
else
{
throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.');
}
throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.');
}
return (bool) $this->lock_fp;