Fix Sliding window: sliding window logic was not applied because a counter was not incremented
This commit is contained in:
parent
f04f9dd6c1
commit
85546dfa2f
|
@ -145,7 +145,7 @@ public class BlockProcessor {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i > wf.getSlidingWindowSize()) {
|
if (++i > wf.getSlidingWindowSize()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue