Remove unused field from WixFeatureGroup
Rob Mensching committed
Oct 7, 2019 at 14:08 UTC
39c098e3dc7767be788f7d3b69ff62fb2f38af63
1 file changed
+2
-12
src/WixToolset.Data/Tuples/WixFeatureGroupTuple.cs
+2
-12
@@ -8,10 +8,7 @@ namespace WixToolset.Data
8
{
9
public static readonly IntermediateTupleDefinition WixFeatureGroup = new IntermediateTupleDefinition(
10
TupleDefinitionType.WixFeatureGroup,
11
- new[]
12
- {
13
- new IntermediateFieldDefinition(nameof(WixFeatureGroupTupleFields.WixFeatureGroup), IntermediateFieldType.String),
14
- },
11
+ new IntermediateFieldDefinition[0],
12
typeof(WixFeatureGroupTuple));
13
}
14
}
@@ -20,7 +17,6 @@ namespace WixToolset.Data.Tuples
17
{
18
public enum WixFeatureGroupTupleFields
19
{
23
- WixFeatureGroup,
20
}
21
22
public class WixFeatureGroupTuple : IntermediateTuple
@@ -34,11 +30,5 @@ namespace WixToolset.Data.Tuples
30
}
31
32
public IntermediateField this[WixFeatureGroupTupleFields index] => this.Fields[(int)index];
37
-
38
- public string WixFeatureGroup
39
- {
40
- get => (string)this.Fields[(int)WixFeatureGroupTupleFields.WixFeatureGroup];
41
- set => this.Set((int)WixFeatureGroupTupleFields.WixFeatureGroup, value);
42
- }
43
- }
33
+ }
34
}
\ No newline at end of file