Skip to content

Commit

Permalink
Reduce unnecessary switches
Browse files Browse the repository at this point in the history
  • Loading branch information
LetLetMe committed Oct 16, 2024
1 parent 6ab8dd2 commit 1ee9ba2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ private boolean processConsumeQueuesForTopic(ConcurrentMap<Integer, ConsumeQueue
break;
}

if(i == minOffsetInQueue){
if (i == minOffsetInQueue) {
earliestKcCqTime = kvCqUnit.getObject2();
}
if (!checkCqUnitEqual(kvCqUnit.getObject1(), fileCqUnit.getObject1())) {
Expand Down

0 comments on commit 1ee9ba2

Please sign in to comment.