aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2019-10-23 17:53:49 -0400
committerBob Arnson <bob@firegiant.com>2019-10-23 18:19:29 -0400
commit0078364515ba1f7570f43d47e43bd359918cafd0 (patch)
tree72ee12ea13bfcbb50549fc96fd0b8b04eea18de7
parent534d79c4434c4a165f4d82ddf033fa43768c3357 (diff)
downloadwix-0078364515ba1f7570f43d47e43bd359918cafd0.tar.gz
wix-0078364515ba1f7570f43d47e43bd359918cafd0.tar.bz2
wix-0078364515ba1f7570f43d47e43bd359918cafd0.zip
Remove id field from WixSearchTuple.
-rw-r--r--src/WixToolset.Data/Tuples/WixSearchTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/WixSearchTuple.cs b/src/WixToolset.Data/Tuples/WixSearchTuple.cs
index 21970e40..fd1ae5bf 100644
--- a/src/WixToolset.Data/Tuples/WixSearchTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixSearchTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.WixSearch, 10 TupleDefinitionType.WixSearch,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.WixSearch), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Variable), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixSearchTupleFields.Condition), IntermediateFieldType.String),
16 }, 15 },
@@ -22,7 +21,6 @@ namespace WixToolset.Data.Tuples
22{ 21{
23 public enum WixSearchTupleFields 22 public enum WixSearchTupleFields
24 { 23 {
25 WixSearch,
26 Variable, 24 Variable,
27 Condition, 25 Condition,
28 } 26 }
@@ -39,12 +37,6 @@ namespace WixToolset.Data.Tuples
39 37
40 public IntermediateField this[WixSearchTupleFields index] => this.Fields[(int)index]; 38 public IntermediateField this[WixSearchTupleFields index] => this.Fields[(int)index];
41 39
42 public string WixSearch
43 {
44 get => (string)this.Fields[(int)WixSearchTupleFields.WixSearch];
45 set => this.Set((int)WixSearchTupleFields.WixSearch, value);
46 }
47
48 public string Variable 40 public string Variable
49 { 41 {
50 get => (string)this.Fields[(int)WixSearchTupleFields.Variable]; 42 get => (string)this.Fields[(int)WixSearchTupleFields.Variable];