replaced arraycopy in mergeMultiData in favor of simpler method for debugging

This commit is contained in:
cola98765
2021-09-20 10:56:28 +02:00
parent 686592effb
commit 3da4e4818c
@@ -376,7 +376,11 @@ public class DataPointUtil
}
}
heightAndDepth[j][1] = heightAndDepth[j + 1][1];
System.arraycopy(heightAndDepth,j + 1, heightAndDepth, j,count - j - 1);
for (i = j + 1; i < count - 1; i++){
heightAndDepth[i][1] = heightAndDepth[i + 1][1];
heightAndDepth[i][2] = heightAndDepth[i + 1][2];
}
//System.arraycopy(heightAndDepth,j + 1, heightAndDepth, j,count - j - 1);
count--;
}