Merge pull request #2357 from Bond-009/warn13

Fix warnings
This commit is contained in:
dkanada
2020-02-03 17:15:03 +09:00
committed by GitHub
84 changed files with 46 additions and 182 deletions

View File

@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.IO;
namespace MediaBrowser.Model.IO
{

View File

@@ -1,4 +1,3 @@
using System.IO;
using System.Net;
namespace MediaBrowser.Model.Net

View File

@@ -39,9 +39,9 @@ namespace MediaBrowser.Model.Tasks
Task Execute(CancellationToken cancellationToken, IProgress<double> progress);
/// <summary>
/// Gets the default triggers.
/// Gets the default triggers that define when the task will run.
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
/// <returns>The default triggers that define when the task will run.</returns>
IEnumerable<TaskTriggerInfo> GetDefaultTriggers();
}
}