diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-24 14:05:08 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-25 12:48:19 -0700 |
| commit | 9787570331b511bab73ac8f4f38a3b8cfa053ca5 (patch) | |
| tree | 508155e2cf4f6bafeef2be1059da547291025352 /src/WixToolset.Data/IntermediateSectionExtensions.cs | |
| parent | 2bcc21d5c2d27e578f59f905f6acd0979b78aa9d (diff) | |
| download | wix-9787570331b511bab73ac8f4f38a3b8cfa053ca5.tar.gz wix-9787570331b511bab73ac8f4f38a3b8cfa053ca5.tar.bz2 wix-9787570331b511bab73ac8f4f38a3b8cfa053ca5.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/WixToolset.Data/IntermediateSectionExtensions.cs')
| -rw-r--r-- | src/WixToolset.Data/IntermediateSectionExtensions.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/IntermediateSectionExtensions.cs b/src/WixToolset.Data/IntermediateSectionExtensions.cs index 73afca7b..80e64eaa 100644 --- a/src/WixToolset.Data/IntermediateSectionExtensions.cs +++ b/src/WixToolset.Data/IntermediateSectionExtensions.cs | |||
| @@ -4,11 +4,11 @@ namespace WixToolset.Data | |||
| 4 | { | 4 | { |
| 5 | public static class IntermediateSectionExtensions | 5 | public static class IntermediateSectionExtensions |
| 6 | { | 6 | { |
| 7 | public static T AddTuple<T>(this IntermediateSection section, T tuple) | 7 | public static T AddSymbol<T>(this IntermediateSection section, T symbol) |
| 8 | where T : IntermediateTuple | 8 | where T : IntermediateSymbol |
| 9 | { | 9 | { |
| 10 | section.Tuples.Add(tuple); | 10 | section.Symbols.Add(symbol); |
| 11 | return tuple; | 11 | return symbol; |
| 12 | } | 12 | } |
| 13 | } | 13 | } |
| 14 | } | 14 | } |
