Removed unnecessary casts

This commit is contained in:
Joshua Askharoun
2021-03-31 17:15:06 -05:00
parent f7d5fa4120
commit 9b09412b45
587 changed files with 7864 additions and 7862 deletions
+3 -3
View File
@@ -14,13 +14,13 @@ namespace Microsoft.Iris.UI
public RootLoadResult(string name)
: base(name)
=> this.RootType = new UIClassTypeSchema((MarkupLoadResult)this, name);
=> this.RootType = new UIClassTypeSchema(this, name);
protected override void OnDispose()
{
base.OnDispose();
this.RootType.Dispose((object)this);
this.RootType = (UIClassTypeSchema)null;
this.RootType.Dispose(this);
this.RootType = null;
}
public override TypeSchema FindType(string name) => (TypeSchema)null;