diff options
author | Rob Mensching <rob@firegiant.com> | 2019-10-07 14:08:10 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-10-07 21:41:53 -0700 |
commit | 39c098e3dc7767be788f7d3b69ff62fb2f38af63 (patch) | |
tree | 38aaa42b1690ade741bb3dcc072efa428c703d14 | |
parent | 3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6 (diff) | |
download | wix-39c098e3dc7767be788f7d3b69ff62fb2f38af63.tar.gz wix-39c098e3dc7767be788f7d3b69ff62fb2f38af63.tar.bz2 wix-39c098e3dc7767be788f7d3b69ff62fb2f38af63.zip |
Remove unused field from WixFeatureGroup
-rw-r--r-- | src/WixToolset.Data/Tuples/WixFeatureGroupTuple.cs | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/WixToolset.Data/Tuples/WixFeatureGroupTuple.cs b/src/WixToolset.Data/Tuples/WixFeatureGroupTuple.cs index e2ae6b14..424bddb7 100644 --- a/src/WixToolset.Data/Tuples/WixFeatureGroupTuple.cs +++ b/src/WixToolset.Data/Tuples/WixFeatureGroupTuple.cs | |||
@@ -8,10 +8,7 @@ namespace WixToolset.Data | |||
8 | { | 8 | { |
9 | public static readonly IntermediateTupleDefinition WixFeatureGroup = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateTupleDefinition WixFeatureGroup = new IntermediateTupleDefinition( |
10 | TupleDefinitionType.WixFeatureGroup, | 10 | TupleDefinitionType.WixFeatureGroup, |
11 | new[] | 11 | new IntermediateFieldDefinition[0], |
12 | { | ||
13 | new IntermediateFieldDefinition(nameof(WixFeatureGroupTupleFields.WixFeatureGroup), IntermediateFieldType.String), | ||
14 | }, | ||
15 | typeof(WixFeatureGroupTuple)); | 12 | typeof(WixFeatureGroupTuple)); |
16 | } | 13 | } |
17 | } | 14 | } |
@@ -20,7 +17,6 @@ namespace WixToolset.Data.Tuples | |||
20 | { | 17 | { |
21 | public enum WixFeatureGroupTupleFields | 18 | public enum WixFeatureGroupTupleFields |
22 | { | 19 | { |
23 | WixFeatureGroup, | ||
24 | } | 20 | } |
25 | 21 | ||
26 | public class WixFeatureGroupTuple : IntermediateTuple | 22 | public class WixFeatureGroupTuple : IntermediateTuple |
@@ -34,11 +30,5 @@ namespace WixToolset.Data.Tuples | |||
34 | } | 30 | } |
35 | 31 | ||
36 | public IntermediateField this[WixFeatureGroupTupleFields index] => this.Fields[(int)index]; | 32 | public IntermediateField this[WixFeatureGroupTupleFields index] => this.Fields[(int)index]; |
37 | 33 | } | |
38 | public string WixFeatureGroup | ||
39 | { | ||
40 | get => (string)this.Fields[(int)WixFeatureGroupTupleFields.WixFeatureGroup]; | ||
41 | set => this.Set((int)WixFeatureGroupTupleFields.WixFeatureGroup, value); | ||
42 | } | ||
43 | } | ||
44 | } \ No newline at end of file | 34 | } \ No newline at end of file |