Skip to content

Commit e76ddcb

Browse files
author
Sherman Wood
committed
deepCopy fix
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@245 c6a108a4-781c-0410-a6c6-c2d559e19af0
1 parent de77341 commit e76ddcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/olap4j/mdx/AxisNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public AxisNode deepCopy() {
168168
this.nonEmpty,
169169
this.axis,
170170
MdxUtil.deepCopyList(dimensionProperties),
171-
this.expression.deepCopy());
171+
this.expression != null ? this.expression.deepCopy() : null);
172172
}
173173
}
174174

0 commit comments

Comments
 (0)