Don't use abbreviations

This commit is contained in:
Pranav K 2016-08-09 15:32:38 -07:00 committed by GitHub
parent ade05fb068
commit 52c7a94db3
1 changed files with 5 additions and 7 deletions

View File

@ -134,7 +134,6 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.UrlRewrite
} }
} }
private static void CreateConditions(XElement conditions, UrlRewriteRule res) private static void CreateConditions(XElement conditions, UrlRewriteRule res)
{ {
// This is to avoid nullptr exception on referencing conditions. // This is to avoid nullptr exception on referencing conditions.
@ -164,7 +163,6 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.UrlRewrite
private static void CreateCondition(XElement condition, UrlRewriteRule res) private static void CreateCondition(XElement condition, UrlRewriteRule res)
{ {
var parsedCondRes = new ParsedCondition(); var parsedCondRes = new ParsedCondition();
bool parBool; bool parBool;
@ -195,9 +193,9 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.UrlRewrite
{ {
input = InputParser.ParseInputString(parsedString); input = InputParser.ParseInputString(parsedString);
} }
catch (FormatException fe) catch (FormatException formatException)
{ {
ThrowUrlFormatException(condition, fe.Message, fe); ThrowUrlFormatException(condition, formatException.Message, formatException);
} }
switch (res.PatternSyntax) switch (res.PatternSyntax)
@ -293,9 +291,9 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.UrlRewrite
{ {
actionRes.Url = InputParser.ParseInputString(urlAction.Attribute(RewriteTags.Url)?.Value); actionRes.Url = InputParser.ParseInputString(urlAction.Attribute(RewriteTags.Url)?.Value);
} }
catch (FormatException fe) catch (FormatException formatException)
{ {
ThrowUrlFormatException(urlAction, fe.Message, fe); ThrowUrlFormatException(urlAction, formatException.Message, formatException);
} }
CreateUrlActionFromParsedAction(urlAction, actionRes, globalRule, res); CreateUrlActionFromParsedAction(urlAction, actionRes, globalRule, res);