don't bother caching this since the subclass caches it

This commit is contained in:
Michael Becker 2021-09-15 17:33:15 -04:00
parent 6ec7b011c3
commit 1f836c42f2
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -297,16 +297,9 @@ namespace UniversalEditor.UserInterface
}
#endregion
private static EditorReference _er = null;
public virtual EditorReference MakeReference()
{
return new EditorReference(GetType());
if (_er == null)
{
_er = new EditorReference(GetType());
}
return _er;
}
private bool mvarInhibitUndo = false;