Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #51 from jellyfin/warning
Browse files Browse the repository at this point in the history
Fix release warning
  • Loading branch information
crobibero committed Dec 5, 2020
2 parents a545397 + 5e263a1 commit c7ec1da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Emby.AutoOrganize/Data/SqliteExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using MediaBrowser.Model.Serialization;
Expand Down Expand Up @@ -182,6 +183,7 @@ public static Guid GetGuid(this IReadOnlyList<IResultSetValue> result, int index
return result[index].ReadGuidFromBlob();
}

[SuppressMessage("Microsoft.Performance", "CA1801:MustUseParameter", MessageId = "name", Justification = "Used only in debug.")]
private static void ThrowInvalidParamName(string name)
{
#if DEBUG
Expand Down

0 comments on commit c7ec1da

Please sign in to comment.