[Bf-blender-cvs] [1d84881ac12] master: Cleanup: remove duplicate code

Jacques Lucke noreply at git.blender.org
Mon Oct 12 21:22:56 CEST 2020


Commit: 1d84881ac12f7d6ef7047733960880fa1f9ec0de
Author: Jacques Lucke
Date:   Mon Oct 12 21:13:49 2020 +0200
Branches: master
https://developer.blender.org/rB1d84881ac12f7d6ef7047733960880fa1f9ec0de

Cleanup: remove duplicate code

This code segment is exactly the same as above.
Looks like it was copied accidentally.

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

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

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

diff --git a/source/blender/blenkernel/intern/volume.cc b/source/blender/blenkernel/intern/volume.cc
index afbdda56181..32f6a94aa7f 100644
--- a/source/blender/blenkernel/intern/volume.cc
+++ b/source/blender/blenkernel/intern/volume.cc
@@ -742,15 +742,6 @@ bool BKE_volume_load(Volume *volume, Main *bmain)
     return false;
   }
 
-  /* Test if file exists. */
-  if (!BLI_exists(grids.filepath)) {
-    char filename[FILE_MAX];
-    BLI_split_file_part(grids.filepath, filename, sizeof(filename));
-    grids.error_msg = filename + std::string(" not found");
-    CLOG_INFO(&LOG, 1, "Volume %s: %s", volume_name, grids.error_msg.c_str());
-    return false;
-  }
-
   /* Open OpenVDB file. */
   openvdb::io::File file(grids.filepath);
   openvdb::GridPtrVec vdb_grids;



More information about the Bf-blender-cvs mailing list