Merge pull request #2755 from Bond-009/dbcleanup

Clean up SqliteItemRepository
This commit is contained in:
Vasily
2020-04-10 00:20:53 +03:00
committed by GitHub
4 changed files with 140 additions and 272 deletions

View File

@@ -24,8 +24,7 @@ namespace MediaBrowser.Controller.Persistence
/// Deletes the item.
/// </summary>
/// <param name="id">The identifier.</param>
/// <param name="cancellationToken">The cancellation token.</param>
void DeleteItem(Guid id, CancellationToken cancellationToken);
void DeleteItem(Guid id);
/// <summary>
/// Saves the items.
@@ -169,4 +168,3 @@ namespace MediaBrowser.Controller.Persistence
List<string> GetAllArtistNames();
}
}