mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 18:09:12 +03:00
[PR #2937] [CLOSED] Fix warning SA1694 #9282
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/2937
Author: @kekonn
Created: 4/20/2020
Status: ❌ Closed
Base:
master← Head:fix-sa1694📝 Commits (10+)
fab151bFix warning SA169496c11beUpdate MediaBrowser.Providers/Movies/ImdbPersonExternalId.cs330c731Incorporating change requests for PR 2937a420004Merge branch 'fix-sa1694' of https://github.com/bloodsplatter/jellyfin into fix-sa1694edf0104Update MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumProvider.csec9a1ddApply suggestions from code review, again.dfbe86aSpelling fix in AudioDbOtherAlbumExternalId.csee62d6fForgot an xml comment on TvdbEpisodeExternalIde96d36aFixing spelling mistakes and adopting wording suggestionscea21f7Adding more documentation to extracted classes📊 Changes
43 files changed (+476 additions, -272 deletions)
View changed files
📝
Emby.Dlna/Api/DlnaServerService.cs(+2 -0)📝
Emby.Dlna/Api/DlnaService.cs(+2 -0)📝
Emby.Server.Implementations/Library/Resolvers/GenericVideoResolver{T}.cs(+0 -0)📝
Emby.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunManager.cs(+1 -0)📝
Emby.Server.Implementations/Playlists/PlaylistsFolder.cs(+0 -0)📝
Emby.Server.Implementations/Services/RestPath.cs(+2 -0)📝
Emby.Server.Implementations/Services/ServiceExec.cs(+2 -0)📝
Emby.Server.Implementations/Services/SwaggerService.cs(+2 -0)📝
Emby.Server.Implementations/UserViews/FolderImageProvider.cs(+2 -0)➕
MediaBrowser.Controller/Collections/CollectionCreatedEventArgs.cs(+22 -0)📝
MediaBrowser.Controller/Collections/CollectionModifiedEventArgs.cs(+0 -14)📝
MediaBrowser.Controller/Entities/Share.cs(+6 -5)📝
MediaBrowser.Controller/Resolvers/ItemResolver.cs(+0 -0)📝
MediaBrowser.Providers/LiveTv/LiveTvMetadataService.cs(+0 -0)📝
MediaBrowser.Providers/Movies/ImdbExternalId.cs(+1 -16)➕
MediaBrowser.Providers/Movies/ImdbPersonExternalId.cs(+24 -0)📝
MediaBrowser.Providers/Movies/MovieMetadataService.cs(+13 -0)📝
MediaBrowser.Providers/Music/ImvdbId.cs(+0 -0)➕
MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs(+24 -0)📝
MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumImageProvider.cs(+9 -0)...and 23 more files
📄 Description
By pragma or renaming files.
In the Emby.Dlna namespace I've left the Route/Api definitions in their files with the service, since moving these outside of those files creates an ambiguity problem that can't be fixed without adding a namespace or actually changing symbol names.
Changes
Warnings in Emby.Server.Implementations have been silenced by a
#pragmaat the top of the file. In other namespaces this is fixed by moving classes out to their separate files or renaming files. No symbol changes were made. In some files, this created unused using statements, which have been cleaned up.Issues
Helps with #2149
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.