diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-05 14:28:41 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-05 14:28:41 -0500 |
| commit | b5842f9f193959d0d780c9585851c7ea827cc08c (patch) | |
| tree | 8d4518623027ccbdfa90acd2b4b1b94c0f252c6b /MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs | |
| parent | ccb4e5851963a95faa50f9c9403078a275e4cc7d (diff) | |
rework build scripts
Diffstat (limited to 'MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs b/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs index f10244a2c..14a877e78 100644 --- a/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs +++ b/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs @@ -20,14 +20,15 @@ namespace MediaBrowser.Server.Implementations.Devices private readonly IApplicationPaths _appPaths; private readonly IJsonSerializer _json; - private ILogger _logger; + private readonly ILogger _logger; private ConcurrentBag<DeviceInfo> _devices; - public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json) + public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json, ILogger logger) { _appPaths = appPaths; _json = json; + _logger = logger; } private string GetDevicesPath() |
