Reduce #lines

pull/2020/head
Bond-009 5 years ago
parent 3221e837f9
commit a6f883345f

@ -216,14 +216,10 @@ namespace Emby.Dlna.Api
protected internal ReadOnlySpan<char> GetPathValue(int index) protected internal ReadOnlySpan<char> GetPathValue(int index)
{ {
static void ThrowIndexOutOfRangeException() static void ThrowIndexOutOfRangeException()
{ => throw new IndexOutOfRangeException("Path doesn't contain enough segments.");
throw new IndexOutOfRangeException("Path doesn't contain enough segments.");
}
static void ThrowInvalidDataException() static void ThrowInvalidDataException()
{ => throw new InvalidDataException("Path doesn't start with the base url.");
throw new InvalidDataException("Path doesn't start with the base url.");
}
ReadOnlySpan<char> path = Request.PathInfo; ReadOnlySpan<char> path = Request.PathInfo;

@ -317,14 +317,10 @@ namespace MediaBrowser.Api
protected internal ReadOnlySpan<char> GetPathValue(int index) protected internal ReadOnlySpan<char> GetPathValue(int index)
{ {
static void ThrowIndexOutOfRangeException() static void ThrowIndexOutOfRangeException()
{ => throw new IndexOutOfRangeException("Path doesn't contain enough segments.");
throw new IndexOutOfRangeException("Path doesn't contain enough segments.");
}
static void ThrowInvalidDataException() static void ThrowInvalidDataException()
{ => throw new InvalidDataException("Path doesn't start with the base url.");
throw new InvalidDataException("Path doesn't start with the base url.");
}
ReadOnlySpan<char> path = Request.PathInfo; ReadOnlySpan<char> path = Request.PathInfo;

Loading…
Cancel
Save