Author: luc
Date: Thu Oct 16 04:33:21 2008
New Revision: 705210
URL: http://svn.apache.org/viewvc?rev=705210&view=rev
Log:
removed unneeded import statements
Modified:
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/stat/regression/OLSMultipleLinearRegressionTest.java
Modified:
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/stat/regression/OLSMultipleLinearRegressionTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/stat/regression/OLSMultipleLinearRegressionTest.java?rev=705210&r1=705209&r2=705210&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/stat/regression/OLSMultipleLinearRegressionTest.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/test/org/apache/commons/math/stat/regression/OLSMultipleLinearRegressionTest.java
Thu Oct 16 04:33:21 2008
@@ -16,12 +16,9 @@
*/
package org.apache.commons.math.stat.regression;
+import org.apache.commons.math.TestUtils;
import org.junit.Before;
import org.junit.Test;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
-import org.apache.commons.math.TestUtils;
-import org.apache.commons.math.linear.RealMatrixImpl;
public class OLSMultipleLinearRegressionTest extends
AbstractMultipleLinearRegressionTest {