Reformatted the files with notes.

This commit is contained in:
Erwin de Haan
2019-01-12 21:41:08 +01:00
parent e2751d42e8
commit 846456b41e
20 changed files with 217 additions and 216 deletions

View File

@@ -1,4 +1,4 @@
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -16,7 +16,7 @@ namespace MediaBrowser.Controller.Entities
if (string.IsNullOrEmpty(person.Name))
{
throw new ArgumentException("The person's name was empty or null.",nameof(person));
throw new ArgumentException("The person's name was empty or null.", nameof(person));
}
// Normalize

View File

@@ -1,4 +1,4 @@
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using System;
using System.Collections.Generic;
@@ -155,7 +155,7 @@ namespace MediaBrowser.Controller.Library
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentException("The path was empty or null.",nameof(path));
throw new ArgumentException("The path was empty or null.", nameof(path));
}
if (AdditionalLocations == null)