Removed a series of unused imports in various classes both source and test.
PR: Obtained from: Submitted by: Reviewed by: CVS: ---------------------------------------------------------------------- CVS: PR: CVS: If this change addresses a PR in the problem report tracking CVS: database, then enter the PR number(s) here. CVS: Obtained from: CVS: If this change has been taken from another system, such as NCSA, CVS: then name the system in this line, otherwise delete it. CVS: Submitted by: CVS: If this code has been contributed to Apache by someone else; i.e., CVS: they sent us a patch or a new module, then include their name/email CVS: address here. If this is your work then delete this line. CVS: Reviewed by: CVS: If we are doing pre-commit code reviews and someone else has CVS: reviewed your changes, include their name(s) here. CVS: If you have not had it reviewed then delete this line. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141235 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
384e07ad45
commit
410fb9d6ff
|
@ -17,15 +17,13 @@ package org.apache.commons.math.stat.univariate;
|
|||
|
||||
import java.io.Serializable;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.apache.commons.math.util.ContractableDoubleArray;
|
||||
|
||||
/**
|
||||
* Default implementation of
|
||||
* {@link org.apache.commons.math.stat.univariate.DescriptiveStatistics}.
|
||||
*
|
||||
* @version $Revision: 1.4 $ $Date: 2004/05/03 14:32:25 $
|
||||
* @version $Revision: 1.5 $ $Date: 2004/05/23 00:30:01 $
|
||||
*/
|
||||
public class DescriptiveStatisticsImpl extends AbstractDescriptiveStatistics implements Serializable {
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
package org.apache.commons.math.random;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
|
@ -33,7 +32,7 @@ import org.apache.commons.math.stat.univariate.SummaryStatistics;
|
|||
/**
|
||||
* Test cases for the EmpiricalDistribution class
|
||||
*
|
||||
* @version $Revision: 1.16 $ $Date: 2004/04/12 02:27:49 $
|
||||
* @version $Revision: 1.17 $ $Date: 2004/05/23 00:30:01 $
|
||||
*/
|
||||
|
||||
public final class EmpiricalDistributionTest extends RetryTestCase {
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
package org.apache.commons.math.random;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
import java.net.URL;
|
||||
|
||||
|
@ -26,7 +25,7 @@ import org.apache.commons.math.stat.univariate.SummaryStatistics;
|
|||
/**
|
||||
* Test cases for the ValueServer class.
|
||||
*
|
||||
* @version $Revision: 1.15 $ $Date: 2004/04/12 02:27:49 $
|
||||
* @version $Revision: 1.16 $ $Date: 2004/05/23 00:30:01 $
|
||||
*/
|
||||
|
||||
public final class ValueServerTest extends RetryTestCase {
|
||||
|
|
|
@ -19,18 +19,14 @@ import junit.framework.Test;
|
|||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
import org.apache.commons.math.MathException;
|
||||
import org.apache.commons.math.TestUtils;
|
||||
import org.apache.commons.math.analysis.UnivariateRealFunction;
|
||||
import org.apache.commons.math.analysis.UnivariateRealSolverFactory;
|
||||
import org.apache.commons.math.analysis.UnivariateRealSolverUtils;
|
||||
import org.apache.commons.math.random.RandomData;
|
||||
import org.apache.commons.math.random.RandomDataImpl;
|
||||
|
||||
/**
|
||||
* Test cases for the {@link Univariate} class.
|
||||
*
|
||||
* @version $Revision: 1.4 $ $Date: 2004/05/03 23:16:39 $
|
||||
* @version $Revision: 1.5 $ $Date: 2004/05/23 00:30:01 $
|
||||
*/
|
||||
|
||||
public final class DescriptiveStatisticsTest extends TestCase {
|
||||
|
|
|
@ -19,12 +19,10 @@ package org.apache.commons.math.util;
|
|||
import java.math.BigDecimal;
|
||||
|
||||
import org.apache.commons.math.MathException;
|
||||
import org.apache.commons.math.TestUtils;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.9 $ $Date: 2004/02/21 21:35:18 $
|
||||
* @version $Revision: 1.10 $ $Date: 2004/05/23 00:30:01 $
|
||||
*/
|
||||
public class DefaultTransformerTest extends TestCase {
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue