From 85ea74ad77ee067d037630bd59deda62e99aab4e Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 17 Jan 2023 12:43:31 -0600 Subject: [PATCH] Cleanup: Remove unnecessary curves RNA verification disabling There is no SDNA data for `position_data` anymore after e9f82d3dc7eebadcc52fdc43. --- source/blender/makesrna/intern/rna_curves.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_curves.c b/source/blender/makesrna/intern/rna_curves.c index 11114f298a9..3db4695a9b9 100644 --- a/source/blender/makesrna/intern/rna_curves.c +++ b/source/blender/makesrna/intern/rna_curves.c @@ -338,7 +338,6 @@ static void rna_def_curves(BlenderRNA *brna) /* Direct access to built-in attributes. */ - RNA_define_verify_sdna(0); prop = RNA_def_property(srna, "position_data", PROP_COLLECTION, PROP_NONE); RNA_def_property_collection_funcs(prop, "rna_Curves_position_data_begin", @@ -351,7 +350,6 @@ static void rna_def_curves(BlenderRNA *brna) NULL); RNA_def_property_struct_type(prop, "FloatVectorAttributeValue"); RNA_def_property_update(prop, 0, "rna_Curves_update_data"); - RNA_define_verify_sdna(1); prop = RNA_def_property(srna, "curve_offset_data", PROP_COLLECTION, PROP_NONE); RNA_def_property_collection_sdna(prop, NULL, "geometry.curve_offsets", NULL);