Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Commit f1dc07f

Browse files
Remove couple missed properties
1 parent 2d82cc1 commit f1dc07f

2 files changed

Lines changed: 0 additions & 9 deletions

File tree

ReQuesty.Builder/Lock/ReQuestyLock.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,6 @@ public bool UsesBackingStore
4848
get; set;
4949
}
5050
/// <summary>
51-
/// Whether backward compatible code was excluded for this client.
52-
/// </summary>
53-
public bool ExcludeBackwardCompatible
54-
{
55-
get; set;
56-
}
57-
/// <summary>
5851
/// Whether additional data was used for this client.
5952
/// </summary>
6053
public bool IncludeAdditionalData

ReQuesty.Builder/Lock/ReQuestyLockComparer.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public bool Equals(ReQuestyLock? x, ReQuestyLock? y)
2525
}
2626
// Manual comparison to avoid false positives on hash collisions.
2727
return x.DisableSSLValidation == y.DisableSSLValidation
28-
&& x.ExcludeBackwardCompatible == y.ExcludeBackwardCompatible
2928
&& x.UsesBackingStore == y.UsesBackingStore
3029
&& x.IncludeAdditionalData == y.IncludeAdditionalData
3130
&& _stringComparer.Equals(x.ReQuestyVersion, y.ReQuestyVersion)
@@ -62,7 +61,6 @@ public int GetHashCode([DisallowNull] ReQuestyLock obj)
6261
hash.Add(obj.ClientNamespaceName, _stringComparer);
6362
hash.Add(obj.Language, _stringComparer);
6463
hash.Add(obj.TypeAccessModifier, _stringComparer);
65-
hash.Add(obj.ExcludeBackwardCompatible);
6664
hash.Add(obj.UsesBackingStore);
6765
hash.Add(obj.IncludeAdditionalData);
6866
hash.Add(obj.Serializers, _stringIEnumerableDeepComparer);

0 commit comments

Comments
 (0)