Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EEE84D9F2 for ; Sun, 22 Jul 2012 15:31:08 +0000 (UTC) Received: (qmail 43911 invoked by uid 500); 22 Jul 2012 15:31:08 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 43787 invoked by uid 500); 22 Jul 2012 15:31:08 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 43777 invoked by uid 99); 22 Jul 2012 15:31:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jul 2012 15:31:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jul 2012 15:31:06 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 459F023888D2 for ; Sun, 22 Jul 2012 15:30:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1364329 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java Date: Sun, 22 Jul 2012 15:30:46 -0000 To: commits@commons.apache.org From: tn@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120722153046.459F023888D2@eris.apache.org> Author: tn Date: Sun Jul 22 15:30:45 2012 New Revision: 1364329 URL: http://svn.apache.org/viewvc?rev=1364329&view=rev Log: Checkstyle fix wrt unused imports. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java?rev=1364329&r1=1364328&r2=1364329&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java Sun Jul 22 15:30:45 2012 @@ -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) {