mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-15 22:53:34 +02:00
Remove two useless lines of code
https://bugzilla.gnome.org/show_bug.cgi?id=648516
This commit is contained in:
@ -1254,7 +1254,6 @@ g_tree_node_rotate_left (GTreeNode *node)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
node->right_child = FALSE;
|
node->right_child = FALSE;
|
||||||
node->right = right;
|
|
||||||
right->left_child = TRUE;
|
right->left_child = TRUE;
|
||||||
}
|
}
|
||||||
right->left = node;
|
right->left = node;
|
||||||
@ -1296,7 +1295,6 @@ g_tree_node_rotate_right (GTreeNode *node)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
node->left_child = FALSE;
|
node->left_child = FALSE;
|
||||||
node->left = left;
|
|
||||||
left->right_child = TRUE;
|
left->right_child = TRUE;
|
||||||
}
|
}
|
||||||
left->right = node;
|
left->right = node;
|
||||||
|
Reference in New Issue
Block a user