diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java b/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java index fd35083a4..6412f2de7 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java @@ -15,20 +15,20 @@ */ package org.apache.commons.math.stat.univariate.moment; -import java.io.Serializable; - +import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic; import org.apache.commons.math.stat.univariate.summary.SumOfLogs; /** * Returns the * geometric mean of the available values. *

- * Uses {@link SumOfLogs} superclass to compute sum of logs and returns + * Uses a {@link SumOfLogs} instance to compute sum of logs and returns * exp( 1/n (sum of logs) ). Therefore, *