remove redunant compare of previous and 1

since that's what the compare_exchange does...
This commit is contained in:
Gary Pennington 2023-06-14 15:29:51 +01:00
parent 785be453f6
commit f7cc4c93d6

View File

@ -55,12 +55,11 @@ impl HokmaLock {
.lock
.compare_exchange(1, 1, Ordering::Acquire, Ordering::Relaxed)
{
if previous != 1 {
return WhenTheHokmaSuppression {
hokma: self,
state: previous,
};
}
// If we failed, previous cannot be 1
return WhenTheHokmaSuppression {
hokma: self,
state: previous,
};
}
}
}