diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/IntermediateFieldContext.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/IntermediateFieldContext.cs b/src/WixToolset.Data/IntermediateFieldContext.cs index a29a63c4..785a959f 100644 --- a/src/WixToolset.Data/IntermediateFieldContext.cs +++ b/src/WixToolset.Data/IntermediateFieldContext.cs | |||
@@ -1,4 +1,4 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | namespace WixToolset.Data | 3 | namespace WixToolset.Data |
4 | { | 4 | { |
@@ -6,7 +6,7 @@ namespace WixToolset.Data | |||
6 | 6 | ||
7 | public class IntermediateFieldContext : IDisposable | 7 | public class IntermediateFieldContext : IDisposable |
8 | { | 8 | { |
9 | private string previous; | 9 | private readonly string previous; |
10 | private bool disposed; | 10 | private bool disposed; |
11 | 11 | ||
12 | public IntermediateFieldContext(string context) | 12 | public IntermediateFieldContext(string context) |
@@ -18,7 +18,7 @@ namespace WixToolset.Data | |||
18 | 18 | ||
19 | public void Dispose() | 19 | public void Dispose() |
20 | { | 20 | { |
21 | Dispose(true); | 21 | this.Dispose(true); |
22 | GC.SuppressFinalize(this); | 22 | GC.SuppressFinalize(this); |
23 | } | 23 | } |
24 | 24 | ||