make sure the abstract copy() method signature used is the restricted one

inherited from the StorelessUnivariateStatistic interface and not the
general one inherited from AbstractUnivariateStatistic.
The eclipse compiler generates an error without this.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@723694 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-12-05 09:49:25 +00:00
parent 7ce0b0ed8a
commit cc080433e4
1 changed files with 5 additions and 0 deletions

View File

@ -91,6 +91,11 @@ public abstract class AbstractStorelessUnivariateStatistic
return getResult();
}
/**
* {@inheritDoc}
*/
public abstract StorelessUnivariateStatistic copy();
/**
* {@inheritDoc}
*/