Skip to content

Commit

Permalink
MONDRIAN: Oops, fix checkFile exceptions.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian-release/3.1/": change = 13286]
  • Loading branch information
julianhyde committed Jan 5, 2010
1 parent 17cf168 commit 11c7886
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/mondrian/rolap/RolapCubeHierarchy.java
Expand Up @@ -4,7 +4,7 @@
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2001-2002 Kana Software, Inc.
// Copyright (C) 2001-2009 Julian Hyde and others
// Copyright (C) 2001-2010 Julian Hyde and others
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
Expand Down Expand Up @@ -1143,7 +1143,7 @@ public Object getMemberCacheLock() {
* a cube.
*/
static class RolapNullCubeMember extends RolapCubeMember {
RolapNullCubeMember(final RolapCubeLevel level, RolapMember nullMember) {
RolapNullCubeMember(RolapCubeLevel level, RolapMember nullMember) {
super(null, nullMember, level, level.getCube());
assert level != null;
}
Expand Down
2 changes: 1 addition & 1 deletion testsrc/main/mondrian/test/TestCalculatedMembers.java
Expand Up @@ -1483,7 +1483,7 @@ private void checkForExponentialPerformance(
* "Stack trace when grand total turned on". The cause of the problem were
* negative SOLVE_ORDER values. We were incorrectly populating
* RolapEvaluator.expandingMember from the parent evaluator, which made it
* look like two evaluation contexts were expanding the same member.
* look like two evaluation contexts were expanding the same member.
*/
public void testCycleFalsePositive() {
if (MondrianProperties.instance().SsasCompatibleNaming.get()) {
Expand Down

0 comments on commit 11c7886

Please sign in to comment.