mirror of
https://github.com/meteoinfo/MeteoInfo.git
synced 2025-12-08 20:36:05 +00:00
bugfix for repeat function
This commit is contained in:
parent
cbecbf9441
commit
11a1878633
@ -1281,8 +1281,8 @@ public class ArrayUtil {
|
||||
r = Array.factory(a.getDataType(), new int[]{(int) a.getSize() * n});
|
||||
int i = 0;
|
||||
while(iterA.hasNext()) {
|
||||
o = iterA.getObjectNext();
|
||||
for (int j = 0; j < n; j++) {
|
||||
o = iterA.getObjectNext();
|
||||
r.setObject(i * n + j, o);
|
||||
}
|
||||
i += 1;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user