diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2024-01-06 21:33:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-06 13:33:48 -0700 |
| commit | 55916a09eb4c88b12906e78d56efb7a67d3dad7e (patch) | |
| tree | 4bf77f04c031d5ad9833854c79a6888f61e88ca5 /MediaBrowser.Controller/Devices/IDeviceManager.cs | |
| parent | 084df5a9437cf54f29eaf1e272c9683f18c6ef87 (diff) | |
Remove some unused client capabilities and sync code (#10812)
Diffstat (limited to 'MediaBrowser.Controller/Devices/IDeviceManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Devices/IDeviceManager.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Devices/IDeviceManager.cs b/MediaBrowser.Controller/Devices/IDeviceManager.cs index 8362db1a7..eb181dcc4 100644 --- a/MediaBrowser.Controller/Devices/IDeviceManager.cs +++ b/MediaBrowser.Controller/Devices/IDeviceManager.cs @@ -59,9 +59,8 @@ namespace MediaBrowser.Controller.Devices /// Gets the devices. /// </summary> /// <param name="userId">The user's id, or <c>null</c>.</param> - /// <param name="supportsSync">A value indicating whether the device supports sync, or <c>null</c>.</param> /// <returns>IEnumerable<DeviceInfo>.</returns> - Task<QueryResult<DeviceInfo>> GetDevicesForUser(Guid? userId, bool? supportsSync); + Task<QueryResult<DeviceInfo>> GetDevicesForUser(Guid? userId); Task DeleteDevice(Device device); |
