Remove extra argument

This commit is contained in:
Bond_009 2022-10-06 20:39:22 +02:00
parent a9a5fcde81
commit f5613add1a
5 changed files with 6 additions and 6 deletions

View file

@ -25,6 +25,6 @@ namespace Jellyfin.Api.Attributes
/// <param name="template">The route template. May not be null.</param> /// <param name="template">The route template. May not be null.</param>
public HttpSubscribeAttribute(string template) public HttpSubscribeAttribute(string template)
: base(_supportedMethods, template) : base(_supportedMethods, template)
=> ArgumentNullException.ThrowIfNull(template, nameof(template)); => ArgumentNullException.ThrowIfNull(template);
} }
} }

View file

@ -25,6 +25,6 @@ namespace Jellyfin.Api.Attributes
/// <param name="template">The route template. May not be null.</param> /// <param name="template">The route template. May not be null.</param>
public HttpUnsubscribeAttribute(string template) public HttpUnsubscribeAttribute(string template)
: base(_supportedMethods, template) : base(_supportedMethods, template)
=> ArgumentNullException.ThrowIfNull(template, nameof(template)); => ArgumentNullException.ThrowIfNull(template);
} }
} }

View file

@ -145,7 +145,7 @@ namespace Jellyfin.Drawing.Skia
/// <exception cref="SkiaCodecException">The file at the specified path could not be used to generate a codec.</exception> /// <exception cref="SkiaCodecException">The file at the specified path could not be used to generate a codec.</exception>
public string GetImageBlurHash(int xComp, int yComp, string path) public string GetImageBlurHash(int xComp, int yComp, string path)
{ {
ArgumentNullException.ThrowIfNull(path, nameof(path)); ArgumentNullException.ThrowIfNull(path);
if (path.Length == 0) if (path.Length == 0)
{ {

View file

@ -69,8 +69,8 @@ namespace Jellyfin.Server.Infrastructure
/// <inheritdoc /> /// <inheritdoc />
protected override Task WriteFileAsync(ActionContext context, PhysicalFileResult result, RangeItemHeaderValue? range, long rangeLength) protected override Task WriteFileAsync(ActionContext context, PhysicalFileResult result, RangeItemHeaderValue? range, long rangeLength)
{ {
ArgumentNullException.ThrowIfNull(context, nameof(context)); ArgumentNullException.ThrowIfNull(context);
ArgumentNullException.ThrowIfNull(result, nameof(result)); ArgumentNullException.ThrowIfNull(result);
if (range != null && rangeLength == 0) if (range != null && rangeLength == 0)
{ {

View file

@ -17,7 +17,7 @@ namespace MediaBrowser.Controller.Entities
/// <param name="url">Trailer URL.</param> /// <param name="url">Trailer URL.</param>
public static void AddTrailerUrl(this BaseItem item, string url) public static void AddTrailerUrl(this BaseItem item, string url)
{ {
ArgumentNullException.ThrowIfNull(url, nameof(url)); ArgumentNullException.ThrowIfNull(url);
if (url.Length == 0) if (url.Length == 0)
{ {