diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:57:24 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-20 00:04:12 -0500 |
commit | 47e586580ac36d37d14aa6afd07dbd820d24a64b (patch) | |
tree | 549bf79593f5ed9e7e2e9d034937b2ec43a17d2e /src | |
parent | 5bbff3ae92decfd071f835b5d489e63000f8cf19 (diff) | |
download | wix-47e586580ac36d37d14aa6afd07dbd820d24a64b.tar.gz wix-47e586580ac36d37d14aa6afd07dbd820d24a64b.tar.bz2 wix-47e586580ac36d37d14aa6afd07dbd820d24a64b.zip |
Use IReadOnlyCollection.
Diffstat (limited to 'src')
-rw-r--r-- | src/wixext/BalBurnBackendExtension.cs | 2 | ||||
-rw-r--r-- | src/wixext/BalExtensionFactory.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/BalBurnBackendExtension.cs b/src/wixext/BalBurnBackendExtension.cs index 6e639c1b..e8dc7a3e 100644 --- a/src/wixext/BalBurnBackendExtension.cs +++ b/src/wixext/BalBurnBackendExtension.cs | |||
@@ -25,7 +25,7 @@ namespace WixToolset.Bal | |||
25 | BalSymbolDefinitions.WixStdbaOverridableVariable, | 25 | BalSymbolDefinitions.WixStdbaOverridableVariable, |
26 | }; | 26 | }; |
27 | 27 | ||
28 | protected override IEnumerable<IntermediateSymbolDefinition> SymbolDefinitions => BurnSymbolDefinitions; | 28 | protected override IReadOnlyCollection<IntermediateSymbolDefinition> SymbolDefinitions => BurnSymbolDefinitions; |
29 | 29 | ||
30 | public override void SymbolsFinalized(IntermediateSection section) | 30 | public override void SymbolsFinalized(IntermediateSection section) |
31 | { | 31 | { |
diff --git a/src/wixext/BalExtensionFactory.cs b/src/wixext/BalExtensionFactory.cs index 30ec88c3..0bfb6c5f 100644 --- a/src/wixext/BalExtensionFactory.cs +++ b/src/wixext/BalExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Bal | |||
8 | 8 | ||
9 | public class BalExtensionFactory : BaseExtensionFactory | 9 | public class BalExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(BalCompiler), | 13 | typeof(BalCompiler), |
14 | typeof(BalExtensionData), | 14 | typeof(BalExtensionData), |