aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocessor.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-24 21:00:13 -0700
committerRob Mensching <rob@robmensching.com>2018-10-24 21:17:34 -0700
commit0ecb2ac1ba28d33b0b3d17a2d7134d2f5485814d (patch)
tree42ce582bfc472c8b1bada41696670ed94e6ddff6 /src/WixToolset.Core/Preprocessor.cs
parent0a67f66835c882763e1504895cbec3acb9284f3d (diff)
downloadwix-0ecb2ac1ba28d33b0b3d17a2d7134d2f5485814d.tar.gz
wix-0ecb2ac1ba28d33b0b3d17a2d7134d2f5485814d.tar.bz2
wix-0ecb2ac1ba28d33b0b3d17a2d7134d2f5485814d.zip
Minor code clean up to match .editorconfig
Diffstat (limited to 'src/WixToolset.Core/Preprocessor.cs')
-rw-r--r--src/WixToolset.Core/Preprocessor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Preprocessor.cs b/src/WixToolset.Core/Preprocessor.cs
index 5a9cf115..a829f7c4 100644
--- a/src/WixToolset.Core/Preprocessor.cs
+++ b/src/WixToolset.Core/Preprocessor.cs
@@ -133,7 +133,7 @@ namespace WixToolset.Core
133 133
134 this.Context = context; 134 this.Context = context;
135 this.Context.CurrentSourceLineNumber = new SourceLineNumber(context.SourcePath); 135 this.Context.CurrentSourceLineNumber = new SourceLineNumber(context.SourcePath);
136 this.Context.Variables = this.Context.Variables == null ? new Dictionary<string, string>() : new Dictionary<string, string>(this.Context.Variables); 136 this.Context.Variables = (this.Context.Variables == null) ? new Dictionary<string, string>() : new Dictionary<string, string>(this.Context.Variables);
137 137
138 this.PreProcess(); 138 this.PreProcess();
139 139