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
@@ -88,13 +88,13 @@ namespace Microsoft.Iris.Markup
public MappingKey(MarkupDataTypeSchema targetType, string provider)
{
this._targetType = targetType;
this._provider = provider;
_targetType = targetType;
_provider = provider;
}
public override bool Equals(object rhs) => rhs is MarkupDataProvider.MappingKey mappingKey && this._targetType == mappingKey._targetType && this._provider == mappingKey._provider;
public override bool Equals(object rhs) => rhs is MarkupDataProvider.MappingKey mappingKey && _targetType == mappingKey._targetType && _provider == mappingKey._provider;
public override int GetHashCode() => this._targetType.GetHashCode() ^ this._provider.GetHashCode();
public override int GetHashCode() => _targetType.GetHashCode() ^ _provider.GetHashCode();
}
}
}