Skip to content
Snippets Groups Projects
Commit 086b3df1 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

fix RMissing filtering loop in CachedVectorNode

parent 2facc0fe
Branches
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ abstract class CachedVectorNode extends RBaseNode {
if (filteredPositionsLength != -1) {
Object[] newPositions = new Object[filteredPositionsLength];
int newPositionIndex = 0;
for (int i = 0; i < filteredPositionsLength; i++) {
for (int i = 0; i < positions.length; i++) {
Object position = positions[i];
if (!isRemovePosition(position)) {
newPositions[newPositionIndex++] = position;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment