replaced short[][] with short[] in mergeMultiData hotfix

This commit is contained in:
cola98765
2021-09-20 12:16:47 +02:00
parent a11ff5b493
commit 25fd29b97e
@@ -386,8 +386,8 @@ public class DataPointUtil
long[] dataPoint = new long[count];
for (j = count - 1; j >= 0; j--)
{
depth = heightAndDepth[j][0];
height = heightAndDepth[j][1];
depth = heightAndDepth[j * 2];
height = heightAndDepth[j * 2 + 1];
for(int k = 0; k < size; k++){
singleDataToMerge[k] = 0;
}