From 907b316799e31b7aea535df4a52c1b23b6040db8 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sat, 4 Apr 2009 21:05:01 +0000 Subject: [PATCH] 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 --- .../apache/commons/math/ode/sampling/DummyStepHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/ode/sampling/DummyStepHandler.java b/src/java/org/apache/commons/math/ode/sampling/DummyStepHandler.java index 4025bbf77..70fd31f67 100644 --- a/src/java/org/apache/commons/math/ode/sampling/DummyStepHandler.java +++ b/src/java/org/apache/commons/math/ode/sampling/DummyStepHandler.java @@ -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. *

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;