Fix javadoc issues

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/5634d8c4
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/5634d8c4
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/5634d8c4

Branch: refs/heads/master
Commit: 5634d8c4cc64db2bc5359b2068f4185c8c6ef422
Parents: 8e20a6e
Author: Ray DeCampo <r...@decampo.org>
Authored: Sat May 13 10:38:41 2017 -0400
Committer: Ray DeCampo <r...@decampo.org>
Committed: Sat May 13 10:38:41 2017 -0400

----------------------------------------------------------------------
 .../math4/ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java   | 2 +-
 .../commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java    | 2 +-
 .../apache/commons/math4/ode/nonstiff/EulerStepInterpolator.java  | 2 +-
 .../apache/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 +-
 .../commons/math4/ode/nonstiff/ThreeEighthesStepInterpolator.java | 2 +-
 8 files changed, 8 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/ClassicalRungeKuttaStepInterpolator.java
----------------------------------------------------------------------
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 8ae949a..103c0e7 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 &theta; belongs to [0 ; 1] and where y'<sub>1</sub> to y'<sub>4</sub> 
are the four
  * evaluations of the derivatives already computed during the
- * step.</p>
+ * step.
  *
  * @see ClassicalRungeKuttaIntegrator
  * @since 1.2

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerFieldStepInterpolator.java
----------------------------------------------------------------------
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 2b084aa..81144e9 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;
  * </ul>
  *
  * where &theta; belongs to [0 ; 1] and where y' is the evaluation of
- * the derivatives already computed during the step.</p>
+ * the derivatives already computed during the step.
  *
  * @see EulerFieldIntegrator
  * @param <T> the type of the field elements

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/EulerStepInterpolator.java
----------------------------------------------------------------------
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 b693a9d..08f2d9c 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;
  * </ul>
  *
  * where &theta; belongs to [0 ; 1] and where y' is the evaluation of
- * the derivatives already computed during the step.</p>
+ * the derivatives already computed during the step.
  *
  * @see EulerIntegrator
  * @since 1.2

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/GillStepInterpolator.java
----------------------------------------------------------------------
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 033c367..0382190 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;
  * </ul>
  * where &theta; belongs to [0 ; 1] and where y'<sub>1</sub> to y'<sub>4</sub>
  * are the four evaluations of the derivatives already computed during
- * the step.</p>
+ * the step.
  *
  * @see GillIntegrator
  * @since 1.2

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/GraggBulirschStoerStepInterpolator.java
----------------------------------------------------------------------
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 a991221..6b107e0 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 <a
  * href="http://www.unige.ch/~hairer/prog/licence.txt";>here</a>, for
  * convenience, it is reproduced below.</p>
- * </p>
  *
- * <table border="0" width="80%" cellpadding="10" align="center" 
bgcolor="#E0E0E0">
+ * <table border="0" width="80%" cellpadding="10" style="text-align: center; 
background-color: #E0E0E0;" summary="odex redistribution policy">
  * <tr><td>Copyright (c) 2004, Ernst Hairer</td></tr>
  *
  * <tr><td>Redistribution and use in source and binary forms, with or

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/MidpointStepInterpolator.java
----------------------------------------------------------------------
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 96446b2..85fb59b 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 &theta; belongs to [0 ; 1] and where y'<sub>1</sub> and 
y'<sub>2</sub> are the two
  * evaluations of the derivatives already computed during the
- * step.</p>
+ * step.
  *
  * @see MidpointIntegrator
  * @since 1.2

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesFieldStepInterpolator.java
----------------------------------------------------------------------
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 17d41cd..d9ec7a2 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 &theta; belongs to [0 ; 1] and where y'<sub>1</sub> to y'<sub>4</sub> 
are the four
  * evaluations of the derivatives already computed during the
- * step.</p>
+ * step.
  *
  * @see ThreeEighthesFieldIntegrator
  * @param <T> the type of the field elements

http://git-wip-us.apache.org/repos/asf/commons-math/blob/5634d8c4/src/main/java/org/apache/commons/math4/ode/nonstiff/ThreeEighthesStepInterpolator.java
----------------------------------------------------------------------
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 b94b61c..a9d6361 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 &theta; belongs to [0 ; 1] and where y'<sub>1</sub> to y'<sub>4</sub> 
are the four
  * evaluations of the derivatives already computed during the
- * step.</p>
+ * step.
  *
  * @see ThreeEighthesIntegrator
  * @since 1.2

Reply via email to