@joebigelow / wix / commits / 00783645

Remove id field from WixSearchTuple.

Bob Arnson committed Oct 23, 2019 at 17:53 UTC 0078364515ba1f7570f43d47e43bd359918cafd0
1 file changed -8
src/WixToolset.Data/Tuples/WixSearchTuple.cs
-8
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.WixSearch,
11 new[]
12 {
13 - new IntermediateFieldDefinition(nameof(WixSearchTupleFields.WixSearch), IntermediateFieldType.String),
13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String),
15 },
@@ -22,7 +21,6 @@ namespace WixToolset.Data.Tuples
21 {
22 public enum WixSearchTupleFields
23 {
25 - WixSearch,
24 Variable,
25 Condition,
26 }
@@ -39,12 +37,6 @@ namespace WixToolset.Data.Tuples
37
38 public IntermediateField this[WixSearchTupleFields index] => this.Fields[(int)index];
39
42 - public string WixSearch
43 - {
44 - get => (string)this.Fields[(int)WixSearchTupleFields.WixSearch];
45 - set => this.Set((int)WixSearchTupleFields.WixSearch, value);
46 - }
47 -
40 public string Variable
41 {
42 get => (string)this.Fields[(int)WixSearchTupleFields.Variable];