From 5634d8c4cc64db2bc5359b2068f4185c8c6ef422 Mon Sep 17 00:00:00 2001
From: Ray DeCampo
Date: Sat, 13 May 2017 10:38:41 -0400
Subject: [PATCH] Fix javadoc issues
---
.../ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java | 2 +-
.../commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java | 2 +-
.../commons/math4/ode/nonstiff/EulerStepInterpolator.java | 2 +-
.../commons/math4/ode/nonstiff/GillStepInterpolator.java | 2 +-
.../math4/ode/nonstiff/GraggBulirschStoerStepInterpolator.java | 3 +--
.../commons/math4/ode/nonstiff/MidpointStepInterpolator.java | 2 +-
.../math4/ode/nonstiff/ThreeEighthesFieldStepInterpolator.java | 2 +-
.../math4/ode/nonstiff/ThreeEighthesStepInterpolator.java | 2 +-
8 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java
index 8ae949a38..103c0e7c1 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java
@@ -45,7 +45,7 @@ import org.apache.commons.math4.ode.sampling.StepInterpolator;
*
* where θ belongs to [0 ; 1] and where y'1 to y'4 are the four
* evaluations of the derivatives already computed during the
- * step.
+ * step.
*
* @see ClassicalRungeKuttaIntegrator
* @since 1.2
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java
index 2b084aac8..81144e986 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java
@@ -38,7 +38,7 @@ import org.apache.commons.math4.ode.FieldODEStateAndDerivative;
*
*
* where θ belongs to [0 ; 1] and where y' is the evaluation of
- * the derivatives already computed during the step.
+ * the derivatives already computed during the step.
*
* @see EulerFieldIntegrator
* @param the type of the field elements
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerStepInterpolator.java
index b693a9d27..08f2d9c74 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerStepInterpolator.java
@@ -35,7 +35,7 @@ import org.apache.commons.math4.ode.sampling.StepInterpolator;
*
*
* where θ belongs to [0 ; 1] and where y' is the evaluation of
- * the derivatives already computed during the step.
+ * the derivatives already computed during the step.
*
* @see EulerIntegrator
* @since 1.2
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/GillStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/GillStepInterpolator.java
index 033c36763..0382190e5 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/GillStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/GillStepInterpolator.java
@@ -45,7 +45,7 @@ import org.apache.commons.math4.util.FastMath;
*
* where θ belongs to [0 ; 1] and where y'1 to y'4
* are the four evaluations of the derivatives already computed during
- * the step.
+ * the step.
*
* @see GillIntegrator
* @since 1.2
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/GraggBulirschStoerStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/GraggBulirschStoerStepInterpolator.java
index a991221e1..6b107e0a9 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/GraggBulirschStoerStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/GraggBulirschStoerStepInterpolator.java
@@ -41,9 +41,8 @@ import org.apache.commons.math4.util.FastMath;
* for this code is available here, for
* convenience, it is reproduced below.
- *
*
- *
+ *
* Copyright (c) 2004, Ernst Hairer |
*
* Redistribution and use in source and binary forms, with or
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/MidpointStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/MidpointStepInterpolator.java
index 96446b20f..85fb59b4e 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/MidpointStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/MidpointStepInterpolator.java
@@ -37,7 +37,7 @@ import org.apache.commons.math4.ode.sampling.StepInterpolator;
*
* where θ belongs to [0 ; 1] and where y'1 and y'2 are the two
* evaluations of the derivatives already computed during the
- * step.
+ * step.
*
* @see MidpointIntegrator
* @since 1.2
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesFieldStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesFieldStepInterpolator.java
index 17d41cd81..d9ec7a2a8 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesFieldStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesFieldStepInterpolator.java
@@ -50,7 +50,7 @@ import org.apache.commons.math4.ode.FieldODEStateAndDerivative;
*
* where θ belongs to [0 ; 1] and where y'1 to y'4 are the four
* evaluations of the derivatives already computed during the
- * step.
+ * step.
*
* @see ThreeEighthesFieldIntegrator
* @param the type of the field elements
diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesStepInterpolator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesStepInterpolator.java
index b94b61c81..a9d636114 100644
--- a/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesStepInterpolator.java
+++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesStepInterpolator.java
@@ -47,7 +47,7 @@ import org.apache.commons.math4.ode.sampling.StepInterpolator;
*
* where θ belongs to [0 ; 1] and where y'1 to y'4 are the four
* evaluations of the derivatives already computed during the
- * step.
+ * step.
*
* @see ThreeEighthesIntegrator
* @since 1.2
|