[Bf-blender-cvs] [8d53e59e32a] master: Cleanup: Remove unnecessary callbacks where default behavior is fine

Jacques Lucke noreply at git.blender.org
Mon Apr 20 11:24:41 CEST 2020


Commit: 8d53e59e32a3c704f0c42e11370cc7812b71b294
Author: Jacques Lucke
Date:   Mon Apr 20 11:22:46 2020 +0200
Branches: master
https://developer.blender.org/rB8d53e59e32a3c704f0c42e11370cc7812b71b294

Cleanup: Remove unnecessary callbacks where default behavior is fine

See comments in D7225.

===================================================================

M	source/blender/blenkernel/intern/simulation.cc

===================================================================

diff --git a/source/blender/blenkernel/intern/simulation.cc b/source/blender/blenkernel/intern/simulation.cc
index 5b08bf811cd..a751e376f0f 100644
--- a/source/blender/blenkernel/intern/simulation.cc
+++ b/source/blender/blenkernel/intern/simulation.cc
@@ -56,17 +56,6 @@ static void simulation_copy_data(Main *UNUSED(bmain),
 {
 }
 
-static void simulation_make_local(Main *bmain, ID *id, const int flags)
-{
-  BKE_lib_id_make_local_generic(bmain, id, flags);
-}
-
-static void simulation_free_data(ID *id)
-{
-  Simulation *simulation = (Simulation *)id;
-  BKE_animdata_free(&simulation->id, false);
-}
-
 void *BKE_simulation_add(Main *bmain, const char *name)
 {
   Simulation *simulation = (Simulation *)BKE_libblock_alloc(bmain, ID_SIM, name, 0);
@@ -88,6 +77,6 @@ IDTypeInfo IDType_ID_SIM = {
 
     /* init_data */ simulation_init_data,
     /* copy_data */ simulation_copy_data,
-    /* free_data */ simulation_free_data,
-    /* make_local */ simulation_make_local,
+    /* free_data */ nullptr,
+    /* make_local */ nullptr,
 };



More information about the Bf-blender-cvs mailing list