From 505fe69d85c90184cd37290ccb0120fec6074c20 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 16 May 2019 12:18:36 -0700 Subject: Remove redundant `?.Value` from strongly typed accesses --- src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs') diff --git a/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs b/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs index e9d54c37..33f17ee9 100644 --- a/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs +++ b/src/WixToolset.Data/Tuples/FeatureComponentsTuple.cs @@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples public string Feature_ { - get => (string)this.Fields[(int)FeatureComponentsTupleFields.Feature_]?.Value; + get => (string)this.Fields[(int)FeatureComponentsTupleFields.Feature_]; set => this.Set((int)FeatureComponentsTupleFields.Feature_, value); } public string Component_ { - get => (string)this.Fields[(int)FeatureComponentsTupleFields.Component_]?.Value; + get => (string)this.Fields[(int)FeatureComponentsTupleFields.Component_]; set => this.Set((int)FeatureComponentsTupleFields.Component_, value); } } -- cgit v1.2.3-55-g6feb