Skip to content

Commit

Permalink
MONDRIAN: fixed build errors related to change 7951 (LAST_SCHEMA_UPDATE)
Browse files Browse the repository at this point in the history
Modified XmlaBaseTestCase to use JDK1.4 DOM API.

[git-p4: depot-paths = "//open/mondrian/": change = 7972]
  • Loading branch information
Matt Campbell authored and Matt Campbell committed Oct 23, 2006
1 parent c0d7c25 commit dd19473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsrc/main/mondrian/xmla/XmlaBaseTestCase.java
Expand Up @@ -38,7 +38,7 @@ protected Document replaceLastSchemaUpdateDate(Document doc) {
}

Node lastSchemaUpdateNode = elements.item(0);
lastSchemaUpdateNode.setTextContent(LAST_SCHEMA_UPDATE_DATE);
lastSchemaUpdateNode.getFirstChild().setNodeValue(LAST_SCHEMA_UPDATE_DATE);
return doc;
}

Expand Down

0 comments on commit dd19473

Please sign in to comment.