From ddb4161e3d9d13703b0df2915e68b5b4ef47e71b Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 13 Apr 2020 16:39:11 +1000 Subject: Try to be more accurate in the tuples with nullable fields. --- src/WixToolset.Data/Tuples/IniLocatorTuple.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/WixToolset.Data/Tuples/IniLocatorTuple.cs') diff --git a/src/WixToolset.Data/Tuples/IniLocatorTuple.cs b/src/WixToolset.Data/Tuples/IniLocatorTuple.cs index 0bb670c6..1a52715d 100644 --- a/src/WixToolset.Data/Tuples/IniLocatorTuple.cs +++ b/src/WixToolset.Data/Tuples/IniLocatorTuple.cs @@ -77,7 +77,7 @@ namespace WixToolset.Data.Tuples public int? Type { - get => this.Fields[(int)IniLocatorTupleFields.Type].AsNullableNumber(); + get => (int?)this.Fields[(int)IniLocatorTupleFields.Type]; set => this.Set((int)IniLocatorTupleFields.Type, value); } } -- cgit v1.2.3-55-g6feb