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:
parent
4345758ddc
commit
3491906594
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue