Merge pull request #1513 from Bond-009/style2

Fix style issues
This commit is contained in:
dkanada
2019-07-29 00:16:56 -07:00
committed by GitHub
3 changed files with 35 additions and 67 deletions

View File

@@ -8,6 +8,12 @@ namespace MediaBrowser.Controller.Resolvers
/// </summary>
public interface IResolverIgnoreRule
{
/// <summary>
/// Checks whether or not the file should be ignored.
/// </summary>
/// <param name="fileInfo">The file information.</param>
/// <param name="parent">The parent BaseItem.</param>
/// <returns>True if the file should be ignored.</returns>
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
}
}