Depsgraph: Remove prototype of unused and non-implemented method

This commit is contained in:
Sergey Sharybin
2016-11-03 11:36:35 +01:00
parent c8c7414c3f
commit f64548daa6

View File

@@ -100,22 +100,6 @@ struct Depsgraph {
Depsgraph();
~Depsgraph();
/**
* Find node which matches the specified description.
*
* \param id: ID block that is associated with this
* \param subdata: identifier used for sub-ID data (e.g. bone)
* \param type: type of node we're dealing with
* \param name: custom identifier assigned to node
*
* \return A node matching the required characteristics if it exists
* or NULL if no such node exists in the graph.
*/
DepsNode *find_node(const ID *id,
eDepsNode_Type type,
const string &subdata,
const string &name);
/**
* Convenience wrapper to find node given just pointer + property.
*