You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2014/10/17 10:41:28 UTC

[4/8] git commit: Removed unused import.

Removed unused import.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/bf88cac1
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/bf88cac1
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/bf88cac1

Branch: refs/heads/master
Commit: bf88cac1ac03ce9378970e5a3d66ba77b1fe0dca
Parents: bd3a6ec
Author: Luc Maisonobe <lu...@apache.org>
Authored: Fri Oct 17 10:22:52 2014 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Fri Oct 17 10:22:52 2014 +0200

----------------------------------------------------------------------
 .../math3/analysis/interpolation/BicubicSplineInterpolator.java     | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/bf88cac1/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java b/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java
index 36a9da2..a973f81 100644
--- a/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java
+++ b/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java
@@ -20,7 +20,6 @@ import org.apache.commons.math3.exception.DimensionMismatchException;
 import org.apache.commons.math3.exception.NoDataException;
 import org.apache.commons.math3.exception.NonMonotonicSequenceException;
 import org.apache.commons.math3.exception.NullArgumentException;
-import org.apache.commons.math3.exception.NumberIsTooSmallException;
 import org.apache.commons.math3.util.MathArrays;
 
 /**