Merge lp:~mandel/wadlsharp/fix_643524 into lp:wadlsharp/trunk

Proposed by Manuel de la Peña
Status: Merged
Merge reported by: Manish Sinha (मनीष सिन्हा)
Merged at revision: not available
Proposed branch: lp:~mandel/wadlsharp/fix_643524
Merge into: lp:wadlsharp/trunk
Diff against target: 13 lines (+2/-1)
1 file modified
WadlConsole/Program.cs (+2/-1)
To merge this branch: bzr merge lp:~mandel/wadlsharp/fix_643524
Reviewer Review Type Date Requested Status
Manish Sinha (मनीष सिन्हा) Approve
Review via email: mp+36013@code.launchpad.net

Description of the change

Fix lp:643524 by ensuring that the ArgsValidation Check method is indeed called.

To post a comment you must log in.
Revision history for this message
Manish Sinha (मनीष सिन्हा) (manishsinha) wrote :

I checked the branch changes. It works!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'WadlConsole/Program.cs'
2--- WadlConsole/Program.cs 2010-09-17 15:26:59 +0000
3+++ WadlConsole/Program.cs 2010-09-20 14:01:23 +0000
4@@ -144,7 +144,8 @@
5 .IsNotNullOrEmpty(input, "input")
6 .PathExists(input, "input")
7 .IsNotNullOrEmpty(outputFile, "output")
8- .IsNotNullOrEmpty(rootNamespace, "namespace");
9+ .IsNotNullOrEmpty(rootNamespace, "namespace")
10+ .Check();
11 }catch(ValidationException e)
12 {
13 Console.Write("wadl-sharp: ");

Subscribers

People subscribed via source and target branches