aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Devices
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-12 21:41:08 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-12 21:41:08 +0100
commit846456b41e87c8ccced544298b80a27d0f199215 (patch)
tree8196146818ecee84bfd5ee99ed1c5aea0402d165 /Emby.Server.Implementations/Devices
parente2751d42e8775596b7c4b929fd004d879f980947 (diff)
Reformatted the files with notes.
Diffstat (limited to 'Emby.Server.Implementations/Devices')
-rw-r--r--Emby.Server.Implementations/Devices/DeviceId.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Devices/DeviceId.cs b/Emby.Server.Implementations/Devices/DeviceId.cs
index 5630d7d3c..4f5950ac7 100644
--- a/Emby.Server.Implementations/Devices/DeviceId.cs
+++ b/Emby.Server.Implementations/Devices/DeviceId.cs
@@ -89,9 +89,10 @@ namespace Emby.Server.Implementations.Devices
public DeviceId(IApplicationPaths appPaths, ILogger logger, IFileSystem fileSystem)
{
- if (fileSystem == null) {
- throw new ArgumentNullException(nameof(fileSystem));
- }
+ if (fileSystem == null)
+ {
+ throw new ArgumentNullException(nameof(fileSystem));
+ }
_appPaths = appPaths;
_logger = logger;