Convert method to static that doesn't use instance data

This commit is contained in:
Qstick 2023-02-18 13:59:08 -06:00
parent 412a36226f
commit a42f97229a
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ namespace NzbDrone.Common.Http.Dispatchers
}
}
private void AddContentHeader(HttpRequestMessage request, string header, string value)
private static void AddContentHeader(HttpRequestMessage request, string header, string value)
{
var headers = request.Content?.Headers;
if (headers == null)