Skip to content

Commit

Permalink
my version of .NET doesn't seem to allow optional parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Mar 31, 2013
1 parent 058c39d commit fb6f5eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ServiceDescriptor.cs
Expand Up @@ -70,7 +70,12 @@ public ServiceDescriptor()
dom.Load(BasePath + ".xml");
}

private string SingleElement(string tagName, bool optional = false)
private string SingleElement(string tagName)
{
return SingleElement(tagName, false);
}

private string SingleElement(string tagName, Boolean optional)
{
var n = dom.SelectSingleNode("//" + tagName);
if (n == null && !optional) throw new InvalidDataException("<" + tagName + "> is missing in configuration XML");
Expand Down

0 comments on commit fb6f5eb

Please sign in to comment.