Might as well make the variable final as it is private and not changed

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@762009 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-04-04 21:05:01 +00:00
parent 3fb0b72a90
commit 907b316799
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ package org.apache.commons.math.ode.sampling;
import java.io.Serializable;
/**
* This class is a step handler that do nothing.
* This class is a step handler that does nothing.
* <p>This class is provided as a convenience for users who are only
* interested in the final state of an integration and not in the
@ -84,7 +84,7 @@ public class DummyStepHandler
}
/** The only instance. */
private static DummyStepHandler instance = new DummyStepHandler();
private static final DummyStepHandler instance = new DummyStepHandler();
/** Serializable version identifier */
private static final long serialVersionUID = 2731635121223090252L;