Skip to content

Commit

Permalink
deepCopy fix
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@245 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
Sherman Wood committed May 26, 2009
1 parent de77341 commit e76ddcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/olap4j/mdx/AxisNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public AxisNode deepCopy() {
this.nonEmpty,
this.axis,
MdxUtil.deepCopyList(dimensionProperties),
this.expression.deepCopy());
this.expression != null ? this.expression.deepCopy() : null);
}
}

Expand Down

0 comments on commit e76ddcb

Please sign in to comment.