Fixed process priority

This commit is contained in:
Andrea Catania
2018-07-25 16:48:18 +02:00
parent b7e66188df
commit c1860fe88b
2 changed files with 1 additions and 7 deletions

View File

@@ -1415,11 +1415,6 @@ bool Node::is_greater_than(const Node *p_node) const {
return res;
}
bool Node::has_priority_higher_than(const Node *p_node) const {
ERR_FAIL_NULL_V(p_node, false);
return data.process_priority > p_node->data.process_priority;
}
void Node::get_owned_by(Node *p_by, List<Node *> *p_owned) {
if (data.owner == p_by)