Obsoletes the LoadMinimalDocument flag since it no longer serves a purpose.
This commit is contained in:
committed by
Sebastiaan Janssen
parent
965a7fc500
commit
e5320f0abd
@@ -26,14 +26,8 @@ namespace umbraco.cms.presentation.Trees
|
||||
public BaseContentTree(string application) : base(application) { }
|
||||
|
||||
private User _user;
|
||||
|
||||
/// <summary>
|
||||
/// Determines whether the (legacy) Document object passed to the OnRenderNode-method
|
||||
/// should be initialized with a full set of properties.
|
||||
/// By default the Document will be initialized, so setting the boolean to True will
|
||||
/// ensure that the Document object is loaded with a minimum set of properties to
|
||||
/// improve performance.
|
||||
/// </summary>
|
||||
|
||||
[Obsolete("This is no longer used and has no effect")]
|
||||
protected virtual bool LoadMinimalDocument { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using umbraco.businesslogic;
|
||||
using umbraco.cms.businesslogic;
|
||||
@@ -19,6 +20,7 @@ namespace umbraco.cms.presentation.Trees
|
||||
|
||||
public ContentRecycleBin(string application) : base(application) { }
|
||||
|
||||
[Obsolete("This is no longer used and has no effect")]
|
||||
protected override bool LoadMinimalDocument
|
||||
{
|
||||
get
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using umbraco.BusinessLogic.Actions;
|
||||
using umbraco.businesslogic;
|
||||
using umbraco.cms.businesslogic.web;
|
||||
using umbraco.cms.presentation.Trees;
|
||||
using umbraco.interfaces;
|
||||
using Umbraco.Core;
|
||||
using Action = umbraco.BusinessLogic.Actions.Action;
|
||||
|
||||
namespace umbraco
|
||||
{
|
||||
@@ -54,6 +56,7 @@ namespace umbraco
|
||||
}
|
||||
}
|
||||
|
||||
[Obsolete("This is no longer used and has no effect")]
|
||||
protected override bool LoadMinimalDocument
|
||||
{
|
||||
get
|
||||
|
||||
@@ -36,6 +36,7 @@ namespace umbraco.editorControls.MultiNodeTreePicker
|
||||
/// </summary>
|
||||
private int? m_DeterminedStartNodeId = null;
|
||||
|
||||
[Obsolete("This is no longer used and has no effect")]
|
||||
protected override bool LoadMinimalDocument
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user