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:
parent
9e9d237ad3
commit
e42f60b937
|
@ -20,7 +20,6 @@ import java.util.Collection;
|
||||||
import java.util.concurrent.CopyOnWriteArrayList;
|
import java.util.concurrent.CopyOnWriteArrayList;
|
||||||
|
|
||||||
import org.apache.commons.math3.exception.MaxCountExceededException;
|
import org.apache.commons.math3.exception.MaxCountExceededException;
|
||||||
import org.apache.commons.math3.exception.NullArgumentException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This abstract class provides a general framework for managing iterative
|
* 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 maxIterations the maximum number of iterations
|
||||||
* @param callBack the function to be called when the maximum number of
|
* @param callBack the function to be called when the maximum number of
|
||||||
* iterations has been reached
|
* 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,
|
public IterationManager(final int maxIterations,
|
||||||
final Incrementor.MaxCountExceededCallback callBack) {
|
final Incrementor.MaxCountExceededCallback callBack) {
|
||||||
|
|
Loading…
Reference in New Issue