mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-18 20:24:20 +01:00
remove async when there's nothing to await
This commit is contained in:
@@ -14,11 +14,11 @@ namespace MediaBrowser.Controller.Chapters
|
||||
/// </summary>
|
||||
/// <param name="itemId">The item identifier.</param>
|
||||
/// <returns>List{ChapterInfo}.</returns>
|
||||
IEnumerable<ChapterInfo> GetChapters(string itemId);
|
||||
List<ChapterInfo> GetChapters(string itemId);
|
||||
|
||||
/// <summary>
|
||||
/// Saves the chapters.
|
||||
/// </summary>
|
||||
Task SaveChapters(string itemId, List<ChapterInfo> chapters);
|
||||
void SaveChapters(string itemId, List<ChapterInfo> chapters);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user