Skip to content

Commit

Permalink
ZCS-13512 no need to check for patch while license activation.
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutig0510 committed Jun 27, 2023
1 parent f8e2598 commit bcb0754
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions common/src/java/com/zimbra/common/util/Version.java
Expand Up @@ -177,10 +177,6 @@ public int compareTo(Version version) {
if (r != 0)
return r;

r = mPatch - version.mPatch;
if (r != 0)
return r;

if (mRel != null) {
if (version.mRel != null) {
r = mRel.ordinal() - version.mRel.ordinal();
Expand Down

0 comments on commit bcb0754

Please sign in to comment.