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 75A7579B7 for ; Sun, 4 Sep 2011 14:37:18 +0000 (UTC) Received: (qmail 7602 invoked by uid 500); 4 Sep 2011 14:37:18 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 7476 invoked by uid 500); 4 Sep 2011 14:37:16 -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 7465 invoked by uid 99); 4 Sep 2011 14:37:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Sep 2011 14:37:16 +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, 04 Sep 2011 14:37:10 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 565DF2388900 for ; Sun, 4 Sep 2011 14:36:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1165033 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java Date: Sun, 04 Sep 2011 14:36:49 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110904143649.565DF2388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Sun Sep 4 14:36:48 2011 New Revision: 1165033 URL: http://svn.apache.org/viewvc?rev=1165033&view=rev Log: removed MathUserException from StepHandler interface JIRA: MATH-488 Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java?rev=1165033&r1=1165032&r2=1165033&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java Sun Sep 4 14:36:48 2011 @@ -17,7 +17,6 @@ package org.apache.commons.math.ode.sampling; -import org.apache.commons.math.exception.MathUserException; /** * This interface represents a handler that should be called after @@ -60,9 +59,7 @@ public interface StepHandler { * Keeping only a reference to the interpolator and reusing it will * result in unpredictable behavior (potentially crashing the application). * @param isLast true if the step is the last one - * @exception MathUserException if user code called from step interpolator - * finalization triggers one */ - void handleStep(StepInterpolator interpolator, boolean isLast) throws MathUserException; + void handleStep(StepInterpolator interpolator, boolean isLast); }