mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Removed extra line breaks.
This commit is contained in:
@@ -3,7 +3,6 @@ using Orchard.Localization;
|
|||||||
using Orchard.Security;
|
using Orchard.Security;
|
||||||
using Orchard.UI.Navigation;
|
using Orchard.UI.Navigation;
|
||||||
|
|
||||||
|
|
||||||
namespace Orchard.Alias {
|
namespace Orchard.Alias {
|
||||||
[OrchardFeature("Orchard.Alias.UI")]
|
[OrchardFeature("Orchard.Alias.UI")]
|
||||||
public class AdminMenu : INavigationProvider {
|
public class AdminMenu : INavigationProvider {
|
||||||
|
|||||||
@@ -109,7 +109,6 @@ namespace Orchard.Alias.Controllers {
|
|||||||
if (options == null)
|
if (options == null)
|
||||||
options = new AdminIndexOptions();
|
options = new AdminIndexOptions();
|
||||||
|
|
||||||
|
|
||||||
var aliases = _aliasHolder.GetMaps().SelectMany(x => x.GetAliases()).Where(x => x.IsManaged);
|
var aliases = _aliasHolder.GetMaps().SelectMany(x => x.GetAliases()).Where(x => x.IsManaged);
|
||||||
|
|
||||||
if (!String.IsNullOrWhiteSpace(options.Search)) {
|
if (!String.IsNullOrWhiteSpace(options.Search)) {
|
||||||
|
|||||||
@@ -126,7 +126,6 @@ namespace Orchard.Alias.Implementation.Map {
|
|||||||
return produced;
|
return produced;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static Tuple<IDictionary<string, object>, string> Traverse(Node focus, RouteValueDictionary routeValues, string areaName) {
|
private static Tuple<IDictionary<string, object>, string> Traverse(Node focus, RouteValueDictionary routeValues, string areaName) {
|
||||||
|
|
||||||
// Initialize a match variable
|
// Initialize a match variable
|
||||||
|
|||||||
@@ -65,7 +65,6 @@ namespace Orchard.Alias.Implementation {
|
|||||||
return key.EndsWith("-", StringComparison.InvariantCulture) ? key.Substring(0, key.Length - 1) : key;
|
return key.EndsWith("-", StringComparison.InvariantCulture) ? key.Substring(0, key.Length - 1) : key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static Dictionary<string, string> ToRouteValues(RouteData routeData, string queryString) {
|
private static Dictionary<string, string> ToRouteValues(RouteData routeData, string queryString) {
|
||||||
var routeValues = routeData.Values
|
var routeValues = routeData.Values
|
||||||
.Select(kv => {
|
.Select(kv => {
|
||||||
|
|||||||
Reference in New Issue
Block a user