From bd4590d7cfaf2fa554ff6c37e095975ac4eb0f02 Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 5 Aug 2023 17:50:16 -0400 Subject: Public prep, and api additions --- lib/VNLib.Data.Caching.ObjectCache/src/CacheBucketHandle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/VNLib.Data.Caching.ObjectCache/src/CacheBucketHandle.cs') diff --git a/lib/VNLib.Data.Caching.ObjectCache/src/CacheBucketHandle.cs b/lib/VNLib.Data.Caching.ObjectCache/src/CacheBucketHandle.cs index f9c1f17..4b88957 100644 --- a/lib/VNLib.Data.Caching.ObjectCache/src/CacheBucketHandle.cs +++ b/lib/VNLib.Data.Caching.ObjectCache/src/CacheBucketHandle.cs @@ -75,7 +75,7 @@ namespace VNLib.Data.Caching.ObjectCache /// /// The other handle to compare /// True if the handles hold a referrence to the same bucket - public bool Equals(CacheBucketHandle other) => _bucket?.Equals(other._bucket) ?? false; + public bool Equals(CacheBucketHandle other) => ReferenceEquals(_bucket, other._bucket); /// /// Determines if the other handle instance is equal to the current. Handles are /// equal iff the underlying bucket referrence is equal. -- cgit