Skip to content

Commit

Permalink
MONDRIAN: Oops, cannot implicitly cast boolean to Object in JDK1.4.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 7474]
  • Loading branch information
julianhyde committed Aug 26, 2006
1 parent 59c5f58 commit 72115f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testsrc/main/mondrian/rolap/VirtualCubeTest.java
Expand Up @@ -178,7 +178,9 @@ private void assertVisibility(
Position[] columnPositions = result.getAxes()[0].positions;
Member measure = columnPositions[ordinal].getMembers()[0];
assertEquals(expectedName, measure.getName());
assertEquals(expectedVisibility, measure.getPropertyValue(Property.VISIBLE.name));
assertEquals(
Boolean.valueOf(expectedVisibility),
measure.getPropertyValue(Property.VISIBLE.name));
}
}

Expand Down

0 comments on commit 72115f5

Please sign in to comment.