diff --git a/src/Umbraco.Web/UrlHelperExtensions.cs b/src/Umbraco.Web/UrlHelperExtensions.cs
index 1397ffc818..249ce76193 100644
--- a/src/Umbraco.Web/UrlHelperExtensions.cs
+++ b/src/Umbraco.Web/UrlHelperExtensions.cs
@@ -21,17 +21,6 @@ namespace Umbraco.Web
///
public static class UrlHelperExtensions
{
- ///
- /// Returns the base path (not including the 'action') of the MVC controller "ExamineManagementController"
- ///
- ///
- ///
- public static string GetExamineManagementServicePath(this UrlHelper url)
- {
- // TODO: Possibly remove this method, I think it's unused...
- var result = url.GetUmbracoApiService("GetIndexerDetails");
- return result.TrimEnd("GetIndexerDetails").EnsureEndsWith('/');
- }
///
/// Return the Url for a Web Api service
@@ -47,19 +36,6 @@ namespace Umbraco.Web
return url.GetUmbracoApiService(actionName, typeof(T), routeVals);
}
- ///
- /// Return the Base Url (not including the action) for a Web Api service
- ///
- ///
- ///
- ///
- ///
- public static string GetUmbracoApiServiceBaseUrl(this UrlHelper url, string actionName)
- where T : UmbracoApiController
- {
- return url.GetUmbracoApiService(actionName).TrimEnd(actionName);
- }
-
public static string GetUmbracoApiServiceBaseUrl(this UrlHelper url, Expression> methodSelector)
where T : UmbracoApiController
{
@@ -112,19 +88,6 @@ namespace Umbraco.Web
return url.GetUmbracoApiService(actionName, ControllerExtensions.GetControllerName(apiControllerType), area, routeVals);
}
- ///
- /// Return the Url for a Web Api service
- ///
- ///
- ///
- ///
- ///
- ///
- public static string GetUmbracoApiService(this UrlHelper url, string actionName, string controllerName, RouteValueDictionary routeVals = null)
- {
- return url.GetUmbracoApiService(actionName, controllerName, "", routeVals);
- }
-
///
/// Return the Url for a Web Api service
///