removed @Override annotations which are not Java 5 compliant

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1003027 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2010-09-30 12:07:46 +00:00
parent df74650ec2
commit 3bf8140d65
3 changed files with 0 additions and 5 deletions

View File

@ -89,13 +89,11 @@ public class BetaDistributionImpl
}
/** {@inheritDoc} */
@Override
public double getAlpha() {
return alpha;
}
/** {@inheritDoc} */
@Override
public double getBeta() {
return beta;
}

View File

@ -71,7 +71,6 @@ public class ExponentialDistributionImpl extends AbstractContinuousDistribution
/**
* {@inheritDoc}
*/
@Override
public double getMean() {
return mean;
}

View File

@ -139,7 +139,6 @@ public class GammaDistributionImpl extends AbstractContinuousDistribution
/**
* {@inheritDoc}
*/
@Override
public double getAlpha() {
return alpha;
}
@ -147,7 +146,6 @@ public class GammaDistributionImpl extends AbstractContinuousDistribution
/**
* {@inheritDoc}
*/
@Override
public double getBeta() {
return beta;
}