Skip to content

Commit

Permalink
Using the more efficient ArrayMap to hold on to the member properties.
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@283 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Oct 2, 2009
1 parent 24050d7 commit f277db7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/olap4j/driver/xmla/XmlaOlap4jPositionMember.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*/
package org.olap4j.driver.xmla;

import org.olap4j.impl.ArrayMap;
import org.olap4j.metadata.*;
import org.olap4j.mdx.ParseTreeNode;
import org.olap4j.OlapException;
Expand Down Expand Up @@ -49,7 +50,7 @@ class XmlaOlap4jPositionMember
assert member != null;
assert propertyValues != null;
this.member = member;
this.propertyValues = new HashMap<Property, String>();
this.propertyValues = new ArrayMap<Property, String>();
this.propertyValues.putAll(propertyValues);
}

Expand Down

0 comments on commit f277db7

Please sign in to comment.