[to #32475164] fix typo by review 11475789

This commit is contained in:
obdev
2023-02-07 16:38:11 +08:00
committed by ob-robot
parent 7a30c1b33f
commit cf46abc3e9
2 changed files with 3 additions and 4 deletions

View File

@ -52,9 +52,7 @@ bool ObPackageStateVersion::operator ==(const ObPackageStateVersion &other)
{
bool b_ret = true;
if (package_version_ != other.package_version_
|| (package_body_version_ != OB_INVALID_VERSION
&& other.package_body_version_ != OB_INVALID_VERSION
&& package_body_version_ != other.package_body_version_)) {
|| package_body_version_ != other.package_body_version_) {
b_ret = false;
}
return b_ret;