aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/BaseJellyfinApiController.cs
diff options
context:
space:
mode:
authorDavid <daullmer@gmail.com>2020-06-07 15:41:49 +0200
committerDavid <daullmer@gmail.com>2020-06-07 15:41:49 +0200
commit7fa374f8a2560cd1c58584b3d5b0567c91ef4138 (patch)
treeb96dadbda3c644d05d9e65d36bbc1b28d9b11f90 /Jellyfin.Api/BaseJellyfinApiController.cs
parentf3029428cd118b34d73706fdd85cc3918b312a86 (diff)
Move Split method from BaseJellyfinApiController.cs to RequestHelpers.cs
Diffstat (limited to 'Jellyfin.Api/BaseJellyfinApiController.cs')
-rw-r--r--Jellyfin.Api/BaseJellyfinApiController.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Jellyfin.Api/BaseJellyfinApiController.cs b/Jellyfin.Api/BaseJellyfinApiController.cs
index 6a9e48f8d..22b9c3fd6 100644
--- a/Jellyfin.Api/BaseJellyfinApiController.cs
+++ b/Jellyfin.Api/BaseJellyfinApiController.cs
@@ -10,23 +10,5 @@ namespace Jellyfin.Api
[Route("[controller]")]
public class BaseJellyfinApiController : ControllerBase
{
- /// <summary>
- /// Splits a string at a seperating character into an array of substrings.
- /// </summary>
- /// <param name="value">The string to split.</param>
- /// <param name="separator">The char that seperates the substrings.</param>
- /// <param name="removeEmpty">Option to remove empty substrings from the array.</param>
- /// <returns>An array of the substrings.</returns>
- internal static string[] Split(string value, char separator, bool removeEmpty)
- {
- if (string.IsNullOrWhiteSpace(value))
- {
- return Array.Empty<string>();
- }
-
- return removeEmpty
- ? value.Split(new[] { separator }, StringSplitOptions.RemoveEmptyEntries)
- : value.Split(separator);
- }
}
}