Removing more of my author tags.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140975 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark R. Diggory 2003-07-07 23:25:14 +00:00
parent 7b6c61666e
commit 9a827be03a
11 changed files with 4 additions and 23 deletions

View File

@ -58,7 +58,6 @@ import java.util.Arrays;
* Provides univariate measures for an array of doubles.
*
* @author <a href="mailto:tobrien@apache.org">Tim O'Brien</a>
* @author Mark Diggory
*/
public abstract class AbstractStoreUnivariate implements StoreUnivariate {

View File

@ -57,8 +57,6 @@ package org.apache.commons.math.stat;
* StatUtils provides easy static implementations of common double[] based
* statistical methods. These return a single result value or in some cases, as
* identified in the javadoc for each method, Double.NaN.
*
* @author <a href="mailto:mdiggory@apache.org">Mark Diggory</a>
*/
public class StatUtils {

View File

@ -62,7 +62,6 @@ package org.apache.commons.math.stat;
* a price of increased storage costs.
*
* @author <a href="mailto:tobrien@apache.org">Tim O'Brien</a>
* @author <a href="mailto:mdiggory@apache.org">Mark R. Diggory</a>
*/
public interface StoreUnivariate extends Univariate {

View File

@ -71,8 +71,7 @@ package org.apache.commons.math.stat;
* in all computations.
*
* @author <a href="mailto:tobrien@apache.org">Tim O'Brien</a>
* @author <a href="mailto:mdiggory@apache.org">Mark Diggory</a>
* @version $Revision: 1.6 $ $Date: 2003/07/07 23:19:20 $
* @version $Revision: 1.7 $ $Date: 2003/07/07 23:25:13 $
*
*/
public interface Univariate {

View File

@ -67,10 +67,8 @@ import org.apache.commons.math.util.FixedDoubleArray;
* to doubles by addValue().
*
* @author <a href="mailto:tobrien@apache.org">Tim O'Brien</a>
* @author <a href="mailto:mdiggory@apache.org">Mark Diggory</a>
* @author Brent Worden
* @author <a href="mailto:HotFusionMan@Yahoo.com">Albert Davidson Chou</a>
* @version $Revision: 1.16 $ $Date: 2003/07/07 23:19:20 $
* @version $Revision: 1.17 $ $Date: 2003/07/07 23:25:13 $
*
*/
public class UnivariateImpl implements Univariate, Serializable {

View File

@ -58,8 +58,6 @@ import org.apache.commons.beanutils.PropertyUtils;
/**
* Uses PropertyUtils to map a Bean getter to a double value.
*
* @author Mark Diggory
*/
public class BeanTransformer implements NumberTransformer {

View File

@ -55,7 +55,6 @@ package org.apache.commons.math.util;
/**
* A Default NumberTransformer for java.lang.Numbers and Numeric Strings.
* @author Mark Diggory
*/
public class DefaultTransformer implements NumberTransformer {

View File

@ -55,8 +55,6 @@ package org.apache.commons.math.util;
/**
* Subclasses implementing this interface can transform Objects to doubles.
*
* @author Mark Diggory
*/
public interface NumberTransformer {

View File

@ -63,8 +63,6 @@ import java.util.Set;
* It provides a means to set NumberTransformers that will be selected
* based on the Class of the object handed to the Maps
* <code>double transform(Object o)</code> method.
*
* @author Mark Diggory
*/
public class TransformerMap implements NumberTransformer {

View File

@ -64,11 +64,8 @@ import java.io.InputStreamReader;
import org.apache.commons.logging.*;
/**
* Test cases for the {@link Univariate} class.
*
* @author Mark R. Diggory
* @version $Revision: 1.6 $ $Date: 2003/06/16 14:29:30 $
* @version $Revision: 1.7 $ $Date: 2003/07/07 23:25:14 $
*/
public class CertifiedDataTest extends TestCase {
protected Univariate u = null;

View File

@ -59,9 +59,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link StatUtils} class.
*
* @author <a href="mailto:mdiggory@apache.org">Mark Diggory</a>
* @version $Revision: 1.4 $ $Date: 2003/07/07 23:19:19 $
* @version $Revision: 1.5 $ $Date: 2003/07/07 23:25:14 $
*/
public final class StatUtilsTest extends TestCase {