Simplified usages in UIX project

This commit is contained in:
Joshua Askharoun
2021-04-02 19:10:51 -05:00
parent 2b20ca46ad
commit c07b53bb0b
464 changed files with 14054 additions and 14064 deletions
+3 -3
View File
@@ -14,13 +14,13 @@ namespace Microsoft.Iris.UI
public RootLoadResult(string name)
: base(name)
=> this.RootType = new UIClassTypeSchema(this, name);
=> RootType = new UIClassTypeSchema(this, name);
protected override void OnDispose()
{
base.OnDispose();
this.RootType.Dispose(this);
this.RootType = null;
RootType.Dispose(this);
RootType = null;
}
public override TypeSchema FindType(string name) => (TypeSchema)null;