Skip to content

Commit

Permalink
MONDRIAN: Oops! Broke build on JDK 1.5.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 14716]
  • Loading branch information
julianhyde committed Oct 22, 2011
1 parent a8031d4 commit 6cededa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testsrc/main/mondrian/rolap/agg/SegmentLoaderTest.java
Expand Up @@ -3,13 +3,13 @@
// This software is subject to the terms of the Eclipse Public License v1.0
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2004-2010 Julian Hyde and others
// Copyright (C) 2004-2011 Julian Hyde and others
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.rolap.agg;

import mondrian.olap.MondrianProperties;
import mondrian.olap.*;
import mondrian.rolap.*;
import mondrian.server.*;
import mondrian.server.Statement;
Expand Down Expand Up @@ -216,7 +216,7 @@ private List<Object[]> trim(final int length, final List<Object[]> data) {
return new AbstractList<Object[]>() {
@Override
public Object[] get(int index) {
return Arrays.copyOf(data.get(index), length);
return Util.copyOf(data.get(index), length);
}

@Override
Expand Down

0 comments on commit 6cededa

Please sign in to comment.