Skip to content

Commit

Permalink
SkipEncodingPathParams and EncodingPathParams should be symmetrical
Browse files Browse the repository at this point in the history
  • Loading branch information
vishrutshah committed May 2, 2016
1 parent 590f07d commit 9bfe06d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public virtual string SkipEncodingQueryParamsRbDict
/// </summary>
public virtual IEnumerable<ParameterTemplateModel> EncodingPathParams
{
get { return AllPathParams.Where(p => !p.Extensions.ContainsKey(Generator.Extensions.SkipUrlEncodingExtension)); }
get { return AllPathParams.Except(SkipEncodingPathParams); }
}

/// <summary>
Expand Down

0 comments on commit 9bfe06d

Please sign in to comment.