@@ -16,7 +16,7 @@ public sealed class ResourceChangeTracker<TResource> : IResourceChangeTracker<TR
1616 private readonly ITargetedFields _targetedFields ;
1717
1818 private IDictionary < string , string > _initiallyStoredAttributeValues ;
19- private IDictionary < string , string > _requestedAttributeValues ;
19+ private IDictionary < string , string > _requestAttributeValues ;
2020 private IDictionary < string , string > _finallyStoredAttributeValues ;
2121
2222 public ResourceChangeTracker ( IJsonApiOptions options , IResourceContextProvider resourceContextProvider , ITargetedFields targetedFields )
@@ -40,11 +40,11 @@ public void SetInitiallyStoredAttributeValues(TResource resource)
4040 }
4141
4242 /// <inheritdoc />
43- public void SetRequestedAttributeValues ( TResource resource )
43+ public void SetRequestAttributeValues ( TResource resource )
4444 {
4545 ArgumentGuard . NotNull ( resource , nameof ( resource ) ) ;
4646
47- _requestedAttributeValues = CreateAttributeDictionary ( resource , _targetedFields . Attributes ) ;
47+ _requestAttributeValues = CreateAttributeDictionary ( resource , _targetedFields . Attributes ) ;
4848 }
4949
5050 /// <inheritdoc />
@@ -75,12 +75,12 @@ public bool HasImplicitChanges()
7575 {
7676 foreach ( string key in _initiallyStoredAttributeValues . Keys )
7777 {
78- if ( _requestedAttributeValues . ContainsKey ( key ) )
78+ if ( _requestAttributeValues . ContainsKey ( key ) )
7979 {
80- string requestedValue = _requestedAttributeValues [ key ] ;
80+ string requestValue = _requestAttributeValues [ key ] ;
8181 string actualValue = _finallyStoredAttributeValues [ key ] ;
8282
83- if ( requestedValue != actualValue )
83+ if ( requestValue != actualValue )
8484 {
8585 return true ;
8686 }
0 commit comments