Use file-scoped namespace

This commit is contained in:
Patrick Barron 2023-11-15 19:49:15 -05:00
parent 7e645dcfc0
commit c38bfd281c
1 changed files with 352 additions and 353 deletions

View File

@ -23,10 +23,10 @@ using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Session;
using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.EntryPoints
namespace Emby.Server.Implementations.EntryPoints;
public sealed class LibraryChangedNotifier : IServerEntryPoint
{
public sealed class LibraryChangedNotifier : IServerEntryPoint
{
private readonly ILibraryManager _libraryManager;
private readonly IServerConfigurationManager _configurationManager;
private readonly IProviderManager _providerManager;
@ -422,5 +422,4 @@ namespace Emby.Server.Implementations.EntryPoints
LibraryUpdateTimer = null;
}
}
}
}