Updating project to correct the following errors:
1. Using directive should appear within a namespace declaration 2. Use trailing comma in multi-line initializers
This commit is contained in:
+2
-2
@@ -2,6 +2,8 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Locking;
|
||||
|
||||
#pragma warning disable MT1013 // Releasing lock without guarantee of execution
|
||||
#pragma warning disable MT1012 // Acquiring lock without guarantee of releasing
|
||||
#pragma warning disable CA1873
|
||||
@@ -16,8 +18,6 @@ using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Diagnostics;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Jellyfin.Database.Implementations.Locking;
|
||||
|
||||
/// <summary>
|
||||
/// A locking behavior that will always block any operation while a write is requested. Mimicks the old SqliteRepository behavior.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user