diff options
author | Bob Arnson <bob@firegiant.com> | 2020-01-06 20:31:08 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-01-06 20:34:29 -0500 |
commit | f12179866ef9963a9349ff16e11c35607d8dddef (patch) | |
tree | 33cb59d37221d62dfbc0f6982889806467a8354e | |
parent | b3fdaaded840dffce93d35aff2bcf19ba4f18371 (diff) | |
download | wix-f12179866ef9963a9349ff16e11c35607d8dddef.tar.gz wix-f12179866ef9963a9349ff16e11c35607d8dddef.tar.bz2 wix-f12179866ef9963a9349ff16e11c35607d8dddef.zip |
Remove ErrorTuple id as field.
-rw-r--r-- | src/WixToolset.Data/Tuples/ErrorTuple.cs | 8 |
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]; |