From 6c1ae2593faab59e1a01c96794e0835a6fcd0626 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 25 Oct 2019 00:23:42 -0700 Subject: Implement WixOutput with support for multiple streams of data --- src/WixToolset.Data/IntermediateFieldContext.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/WixToolset.Data/IntermediateFieldContext.cs') 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 @@ -// 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. +// 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. namespace WixToolset.Data { @@ -6,7 +6,7 @@ namespace WixToolset.Data public class IntermediateFieldContext : IDisposable { - private string previous; + private readonly string previous; private bool disposed; public IntermediateFieldContext(string context) @@ -18,7 +18,7 @@ namespace WixToolset.Data public void Dispose() { - Dispose(true); + this.Dispose(true); GC.SuppressFinalize(this); } -- cgit v1.2.3-55-g6feb