Fixed missing deep copy.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1555050 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2014-01-03 11:22:04 +00:00
parent 4345758ddc
commit 3491906594
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public abstract class AbstractSubHyperplane<S extends Space, T extends Space>
/** {@inheritDoc} */
public AbstractSubHyperplane<S, T> copySelf() {
return buildNew(hyperplane, remainingRegion);
return buildNew(hyperplane.copySelf(), remainingRegion);
}
/** Get the underlying hyperplane.