Skip to content

Commit

Permalink
Remove redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
flanglet committed Jan 2, 2025
1 parent 03ed9f2 commit db5f234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v2/transform/RLT.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ func (this *RLT) Forward(src, dst []byte) (uint, uint, error) {
srcIdx += 4
run += 4

if (run < _RLT_MAX_RUN4) && (srcIdx < srcEnd4) {
if run < _RLT_MAX_RUN4 && srcIdx < srcEnd4 {
continue
}
} else if prev == src[srcIdx] {
} else {
srcIdx++
run++

Expand Down

0 comments on commit db5f234

Please sign in to comment.