A little house cleaning in the ResourceManager

--HG--
branch : dev
This commit is contained in:
Nathan Heskew
2010-03-08 15:55:35 -08:00
parent 25faf66875
commit 65060901c3
2 changed files with 1 additions and 3 deletions

View File

@@ -37,7 +37,6 @@ namespace Orchard.Mvc.Html {
public string FileName { get; set; }
public string Condition { get; set; }
public string FilePathAttributeName { get; set; }
public IDictionary<string, string> Attributes { get { return _tagBuilder.Attributes; } }
public void AddAttribute(string name, string value) {
_tagBuilder.MergeAttribute(name, value);
@@ -68,7 +67,7 @@ namespace Orchard.Mvc.Html {
return obj.GetType() == typeof (FileRegistrationContext) && Equals((FileRegistrationContext) obj);
}
public bool Equals(FileRegistrationContext other) {
private bool Equals(FileRegistrationContext other) {
if (ReferenceEquals(null, other)) {
return false;
}

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
using System.Web.Routing;
using JetBrains.Annotations;
using Orchard.Localization;
using Orchard.Mvc.Html;