Checkstyle fix wrt unused imports.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1364329 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-07-22 15:30:45 +00:00
parent 9e9d237ad3
commit e42f60b937
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@ import java.util.Collection;
import java.util.concurrent.CopyOnWriteArrayList;
import org.apache.commons.math3.exception.MaxCountExceededException;
import org.apache.commons.math3.exception.NullArgumentException;
/**
* This abstract class provides a general framework for managing iterative
@ -54,7 +53,7 @@ public class IterationManager {
* @param maxIterations the maximum number of iterations
* @param callBack the function to be called when the maximum number of
* iterations has been reached
* @throws NullArgumentException if {@code callBack} is {@code null}
* @throws org.apache.commons.math3.exception.NullArgumentException if {@code callBack} is {@code null}
*/
public IterationManager(final int maxIterations,
final Incrementor.MaxCountExceededCallback callBack) {