Skip to content

Commit

Permalink
MONDRIAN: Fix checkFile exceptions.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 14446]
  • Loading branch information
julianhyde committed Jul 11, 2011
1 parent 11a7fe6 commit 5aa45fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/mondrian/olap/DelegatingSchemaReader.java
Expand Up @@ -257,7 +257,6 @@ public SchemaReader withLocus() {
return RolapUtil.locusSchemaReader(
schemaReader.getSchema().getInternalConnection(),
this);

}
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/mondrian/rolap/agg/SegmentLoader.java
Expand Up @@ -194,8 +194,8 @@ private void loadSegmentsFromCache(
for (int i = 0; i < segment.axes.length; i++) {
Aggregation.Axis axis = segment.axes[i];
axis.loadKeys(
sb.getAxisValueSets()[i],
sb.getNullAxisFlags()[i]);
sb.getAxisValueSets()[i],
sb.getNullAxisFlags()[i]);
}
final SegmentDataset dataSet =
sb.createSegmentDataset(segment);
Expand Down

0 comments on commit 5aa45fe

Please sign in to comment.