~mandel/wadlsharp/fix_643524

« back to all changes in this revision

Viewing changes to WadlConsole/Program.cs

  • Committer: Manuel de la Pena
  • Date: 2010-09-20 13:59:06 UTC
  • Revision ID: mandel@themacaque.com-20100920135906-qy34ool160pj5juw
Fix lp:643524 by ensuring that the ArgsValidation Check method is indeed called.

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
                    .IsNotNullOrEmpty(input, "input")
145
145
                    .PathExists(input, "input")
146
146
                    .IsNotNullOrEmpty(outputFile, "output")
147
 
                    .IsNotNullOrEmpty(rootNamespace, "namespace");
 
147
                    .IsNotNullOrEmpty(rootNamespace, "namespace")
 
148
                    .Check();
148
149
            }catch(ValidationException e)
149
150
            {
150
151
                Console.Write("wadl-sharp: ");