Skip to content

Commit

Permalink
Fix review commentsa
Browse files Browse the repository at this point in the history
  • Loading branch information
Burak Akgerman committed Jun 6, 2022
1 parent f3ed63d commit c86d101
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent)
/// </summary>
/// <param name="response"></param>
/// <returns></returns>
protected Cookies GetCookies(HttpResponseBase response)
private Cookies GetCookies(HttpResponseBase response)
{
return response.Cookies;
}
Expand Down Expand Up @@ -144,7 +144,7 @@ private IEnumerable<KeyValuePair<string, string>> GetCookieValue(HttpCookie http
/// </summary>
/// <param name="response"></param>
/// <returns></returns>
protected static IList<SetCookieHeaderValue> GetCookies(HttpResponse response)
private static IList<SetCookieHeaderValue> GetCookies(HttpResponse response)
{
var queryResults = response.Headers[HeaderNames.SetCookie];
if (queryResults.Count > 0 && SetCookieHeaderValue.TryParseList(queryResults, out var result))
Expand Down

0 comments on commit c86d101

Please sign in to comment.