I am removing as much checkstyle error as possible in preparation of 1.2 release. The current errors all deal with missing javadoc tags in derived classes of the stat subpackages. A typical example is:
/** * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#getResult() */ public double getResult() { // some implementation } I have started removing them by copying the javadoc from abstract base class or interface as needed, because I thought we should avoid the [EMAIL PROTECTED] doc for the sake of java 1.3 compatibility (the tag as been introduced in java 1.4 if I remember correctly). However, the current versions of o.a.c.math.stat.descriptive.moment.Variance and o.a.c.math.stat.inference.ChiSquareTestImpl classes already use [EMAIL PROTECTED] I think this is an error, but since it is much better than copying the javadoc, I wonder if this should be generalized or fixed. Do we intend to be java 1.3 compatible up to javadoc tags ? Luc --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]