remove the condition that is always 'true'

This commit is contained in:
xuejiangtao
2019-05-15 23:26:02 +08:00
committed by GitHub
parent 8f472d9197
commit 003daf0a05

View File

@@ -252,10 +252,6 @@ public class IndexVersion {
return GREATER_THAN;
} else if (firstMinor < secondMinor) {
return LESS_THAN;
} else {
// This is an impossible scenario.
// This 'else' should never be triggered since we've checked for equality above already
return EQUAL;
}
}