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
@@ -23,7 +23,7 @@ namespace Microsoft.Iris.Markup
public NativeMarkupDataQuery(MarkupDataQuerySchema type, NativeDataProviderWrapper provider)
: base(type)
{
this._handleToMe = NativeMarkupDataQuery.s_handleTable.RegisterProxy((object)this);
this._handleToMe = NativeMarkupDataQuery.s_handleTable.RegisterProxy(this);
this._typeHandle = type.UniqueId;
this._resultTypeHandle = type.ResultType.UniqueId;
this._externalQuery = provider.ConstructQuery(type.ProviderName, this._typeHandle, this._resultTypeHandle, this._handleToMe);