diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-06 15:49:09 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-08 16:37:14 -0700 |
commit | 3fb889ab7aa3cb0dfae23e0379e28552e919ad72 (patch) | |
tree | 573a4bc2677a3db1adcdf1a508b8a32ed4c796a8 /src/test | |
parent | 703546818ada54faa0bac33441370291b8e4bf6b (diff) | |
download | wix-3fb889ab7aa3cb0dfae23e0379e28552e919ad72.tar.gz wix-3fb889ab7aa3cb0dfae23e0379e28552e919ad72.tar.bz2 wix-3fb889ab7aa3cb0dfae23e0379e28552e919ad72.zip |
Integrate change to TryParseCommand and other code cleanup
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Example.Extension/ExamplePreprocessorExtensionAndCommandLine.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/Example.Extension/ExamplePreprocessorExtensionAndCommandLine.cs b/src/test/Example.Extension/ExamplePreprocessorExtensionAndCommandLine.cs index eddcf6e4..49f68de5 100644 --- a/src/test/Example.Extension/ExamplePreprocessorExtensionAndCommandLine.cs +++ b/src/test/Example.Extension/ExamplePreprocessorExtensionAndCommandLine.cs | |||
@@ -34,7 +34,7 @@ namespace Example.Extension | |||
34 | return false; | 34 | return false; |
35 | } | 35 | } |
36 | 36 | ||
37 | public bool TryParseCommand(ICommandLineParser parser, out ICommandLineCommand command) | 37 | public bool TryParseCommand(ICommandLineParser parser, string argument, out ICommandLineCommand command) |
38 | { | 38 | { |
39 | command = null; | 39 | command = null; |
40 | return false; | 40 | return false; |
@@ -54,4 +54,4 @@ namespace Example.Extension | |||
54 | return null; | 54 | return null; |
55 | } | 55 | } |
56 | } | 56 | } |
57 | } \ No newline at end of file | 57 | } |