From f64548daa6d6d863356367bb72017c511bf04953 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 3 Nov 2016 11:36:35 +0100 Subject: [PATCH] Depsgraph: Remove prototype of unused and non-implemented method --- source/blender/depsgraph/intern/depsgraph.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h index 08b264f8497..ca380d8db0e 100644 --- a/source/blender/depsgraph/intern/depsgraph.h +++ b/source/blender/depsgraph/intern/depsgraph.h @@ -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. *