aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-04-30 16:19:25 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-04-30 16:19:25 +0200
commit6055a3cc7ed76cfe458ea524bfad66f475f35ce8 (patch)
tree4b4c8ef0441b4d41b1258f4b7f9939a7c9e1df12 /phpBB
parent78b0d3e723ab57c2e32b95a66159861fe461d77f (diff)
downloadforums-6055a3cc7ed76cfe458ea524bfad66f475f35ce8.tar
forums-6055a3cc7ed76cfe458ea524bfad66f475f35ce8.tar.gz
forums-6055a3cc7ed76cfe458ea524bfad66f475f35ce8.tar.bz2
forums-6055a3cc7ed76cfe458ea524bfad66f475f35ce8.tar.xz
forums-6055a3cc7ed76cfe458ea524bfad66f475f35ce8.zip
[ticket/11495] Remove useless release_lock() method
PHPBB3-11495
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/tree/nestedset.php38
1 files changed, 14 insertions, 24 deletions
diff --git a/phpBB/includes/tree/nestedset.php b/phpBB/includes/tree/nestedset.php
index 26152e6c10..f92606a4c4 100644
--- a/phpBB/includes/tree/nestedset.php
+++ b/phpBB/includes/tree/nestedset.php
@@ -122,16 +122,6 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
}
/**
- * Releases the lock on the item table
- *
- * @return null
- */
- protected function release_lock()
- {
- $this->lock->release();
- }
-
- /**
* @inheritdoc
*/
public function insert(array $additional_data)
@@ -239,7 +229,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if (!$item)
{
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_ITEM');
}
@@ -275,7 +265,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if (!$target)
{
- $this->release_lock();
+ $this->lock->release();
// The item is already on top or bottom
return false;
}
@@ -327,7 +317,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
" . $this->get_sql_where();
$this->db->sql_query($sql);
- $this->release_lock();
+ $this->lock->release();
return true;
}
@@ -371,7 +361,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
$item_data = $this->get_subtree_data($current_parent_id);
if (!isset($item_data[$current_parent_id]))
{
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_ITEM');
}
@@ -381,13 +371,13 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if (($current_parent[$this->column_right_id] - $current_parent[$this->column_left_id]) <= 1)
{
- $this->release_lock();
+ $this->lock->release();
return false;
}
if (in_array($new_parent_id, $move_items))
{
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_PARENT');
}
@@ -411,7 +401,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if (!$new_parent)
{
$this->db->sql_transaction('rollback');
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_PARENT');
}
@@ -449,7 +439,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
$this->db->sql_query($sql);
$this->db->sql_transaction('commit');
- $this->release_lock();
+ $this->lock->release();
return true;
}
@@ -477,7 +467,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
$item_data = $this->get_subtree_data($item_id);
if (!isset($item_data[$item_id]))
{
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_ITEM');
}
@@ -486,7 +476,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if (in_array($new_parent_id, $move_items))
{
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_PARENT');
}
@@ -510,7 +500,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if (!$new_parent)
{
$this->db->sql_transaction('rollback');
- $this->release_lock();
+ $this->lock->release();
throw new OutOfBoundsException($this->message_prefix . 'INVALID_PARENT');
}
@@ -548,7 +538,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
$this->db->sql_query($sql);
$this->db->sql_transaction('commit');
- $this->release_lock();
+ $this->lock->release();
return true;
}
@@ -710,7 +700,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if ($acquired_new_lock)
{
- $this->release_lock();
+ $this->lock->release();
}
}
@@ -838,7 +828,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
if ($acquired_new_lock)
{
$this->db->sql_transaction('commit');
- $this->release_lock();
+ $this->lock->release();
}
return $new_id;