aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/WixToolset.Data/Tuples/ErrorTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/ErrorTuple.cs b/src/WixToolset.Data/Tuples/ErrorTuple.cs
index e7c93c59..89968283 100644
--- a/src/WixToolset.Data/Tuples/ErrorTuple.cs
+++ b/src/WixToolset.Data/Tuples/ErrorTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.Error, 10 TupleDefinitionType.Error,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ErrorTupleFields.Error), IntermediateFieldType.Number),
14 new IntermediateFieldDefinition(nameof(ErrorTupleFields.Message), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ErrorTupleFields.Message), IntermediateFieldType.String),
15 }, 14 },
16 typeof(ErrorTuple)); 15 typeof(ErrorTuple));
@@ -21,7 +20,6 @@ namespace WixToolset.Data.Tuples
21{ 20{
22 public enum ErrorTupleFields 21 public enum ErrorTupleFields
23 { 22 {
24 Error,
25 Message, 23 Message,
26 } 24 }
27 25
@@ -37,12 +35,6 @@ namespace WixToolset.Data.Tuples
37 35
38 public IntermediateField this[ErrorTupleFields index] => this.Fields[(int)index]; 36 public IntermediateField this[ErrorTupleFields index] => this.Fields[(int)index];
39 37
40 public int Error
41 {
42 get => (int)this.Fields[(int)ErrorTupleFields.Error];
43 set => this.Set((int)ErrorTupleFields.Error, value);
44 }
45
46 public string Message 38 public string Message
47 { 39 {
48 get => (string)this.Fields[(int)ErrorTupleFields.Message]; 40 get => (string)this.Fields[(int)ErrorTupleFields.Message];