fixes up a few notes.

This commit is contained in:
Shannon
2014-03-25 13:07:16 +11:00
parent c31ea7409f
commit 3427f596e3
2 changed files with 11 additions and 11 deletions

View File

@@ -26,7 +26,7 @@ namespace Umbraco.Web.Editors
[PluginController("UmbracoApi")]
public class ContentTypeController : UmbracoAuthorizedJsonController
{
private ICultureDictionary cultureDictionary;
private ICultureDictionary _cultureDictionary;
/// <summary>
/// Constructor
@@ -52,7 +52,7 @@ namespace Umbraco.Web.Editors
public IEnumerable<ContentTypeBasic> GetAllowedChildren(int contentId)
{
IEnumerable<IContentType> types;
if (contentId == Core.Constants.System.Root)
if (contentId == Constants.System.Root)
{
types = Services.ContentTypeService.GetAllContentTypes().ToList();
@@ -83,10 +83,10 @@ namespace Umbraco.Web.Editors
return basics;
}
// This should really be centralized and used anywhere globalization applies.
// TODO: This should really be centralized and used anywhere globalization applies.
internal string TranslateItem(string text)
{
if (!text.StartsWith("#"))
if (text.StartsWith("#") == false)
return text;
text = text.Substring(1);
@@ -98,8 +98,8 @@ namespace Umbraco.Web.Editors
get
{
return
cultureDictionary ??
(cultureDictionary = CultureDictionaryFactoryResolver.Current.Factory.CreateDictionary());
_cultureDictionary ??
(_cultureDictionary = CultureDictionaryFactoryResolver.Current.Factory.CreateDictionary());
}
}
}

View File

@@ -16,7 +16,7 @@ namespace Umbraco.Web.Models.Mapping
/// </summary>
internal class TabsAndPropertiesResolver : ValueResolver<IContentBase, IEnumerable<Tab<ContentPropertyDisplay>>>
{
private ICultureDictionary cultureDictionary;
private ICultureDictionary _cultureDictionary;
protected IEnumerable<string> IgnoreProperties { get; set; }
public TabsAndPropertiesResolver()
@@ -207,7 +207,7 @@ namespace Umbraco.Web.Models.Mapping
return aggregateTabs;
}
// This should really be centralized and used anywhere globalization applies.
// TODO: This should really be centralized and used anywhere globalization applies.
internal string TranslateItem(string text)
{
var cultureDictionary = CultureDictionary;
@@ -216,7 +216,7 @@ namespace Umbraco.Web.Models.Mapping
private static string TranslateItem(string text, ICultureDictionary cultureDictionary)
{
if (!text.StartsWith("#"))
if (text.StartsWith("#") == false)
return text;
text = text.Substring(1);
@@ -228,8 +228,8 @@ namespace Umbraco.Web.Models.Mapping
get
{
return
cultureDictionary ??
(cultureDictionary = CreateDictionary());
_cultureDictionary ??
(_cultureDictionary = CreateDictionary());
}
}