remove unreachable code

This commit is contained in:
Charles Ewert 2023-05-05 13:19:15 -04:00
parent 9e740e7ef9
commit f4a7a6c8af

View File

@ -86,10 +86,9 @@ namespace api
end function
' Gets an audio stream.
function HeadUniversalURL()
sub HeadUniversalURL()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
end namespace
namespace auth
@ -1720,10 +1719,9 @@ namespace api
end function
' Updates named configuration.
function UpdateConfigurationByName()
sub UpdateConfigurationByName()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Gets a default MetadataOptions object.
function GetDefaultMetaDataOptions()
@ -1732,10 +1730,9 @@ namespace api
end function
' Updates the path to the media encoder.
function UpdateMediaEncoderPath()
sub UpdateMediaEncoderPath()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Gets information about the request endpoint.
function GetEndpoint()
@ -1889,10 +1886,9 @@ namespace api
end function
' Authenticates a user with quick connect.
function AuthenticateWithQuickConnect()
sub AuthenticateWithQuickConnect()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Initiates the forgot password process for a local user.
function ForgotPassword(body = {} as object)
@ -1909,16 +1905,14 @@ namespace api
end function
' Sets the user image.
function UpdateImage()
sub UpdateImage()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Delete the user's image.
function DeleteImage()
sub DeleteImage()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Get user profile image.
function GetImageURL(id as string, imagetype = "primary" as string, imageindex = 0 as integer, params = {} as object)
@ -2064,10 +2058,9 @@ namespace api
end function
' Removes alternate video sources.
function DeleteAdditionalParts()
sub DeleteAdditionalParts()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Gets a video stream.
function GetStreamURL(id as string, params = {} as object)
@ -2098,10 +2091,9 @@ namespace api
end function
' Get video attachment.
function GetAttachments()
sub GetAttachments()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Gets an HLS subtitle playlist.
function GetHLSSubtitlePlaylistURL(id as string, streamindex as integer, mediasourceid as string, params = {} as object)
@ -2109,16 +2101,14 @@ namespace api
end function
' Upload an external subtitle file.
function UploadSubtitle()
sub UploadSubtitle()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Deletes an external subtitle file.
function DeleteSubtitle()
sub DeleteSubtitle()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Gets subtitles in a specified format.
function GetSubtitlesWithStartPosition(routeitemid as string, routemediasourceid as string, routeindex as integer, routestartpositionticks as integer, routeformat as string, params = {} as object)
@ -2134,10 +2124,9 @@ namespace api
namespace web
' Gets a dashboard configuration page.
function GetConfigurationPage()
sub GetConfigurationPage()
throw "System.NotImplementedException: The function is not implemented."
return false
end function
end sub
' Gets the configuration pages.
function GetConfigurationPages()