Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…group_id=168953&atid=848534

Properties are now copied in a new map instead of relying on the supplied map object pointer.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@281 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Sep 30, 2009
1 parent d344db5 commit 8e541bb
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 @@ -49,7 +49,8 @@ class XmlaOlap4jPositionMember
assert member != null;
assert propertyValues != null;
this.member = member;
this.propertyValues = propertyValues;
this.propertyValues = new HashMap<Property, String>();
this.propertyValues.putAll(propertyValues);
}

public boolean equals(Object obj) {
Expand Down

0 comments on commit 8e541bb

Please sign in to comment.