From 1d84881ac12f7d6ef7047733960880fa1f9ec0de Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Mon, 12 Oct 2020 21:13:49 +0200 Subject: Cleanup: remove duplicate code This code segment is exactly the same as above. Looks like it was copied accidentally. --- source/blender/blenkernel/intern/volume.cc | 9 --------- 1 file changed, 9 deletions(-) (limited to 'source') 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; -- cgit v1.2.3