Skip to content

Commit eb9cfeb

Browse files
committed
Javadoc @SInCE tag should be after @throws
1 parent aed0672 commit eb9cfeb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/polynomials/PolynomialFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ protected static double evaluate(double[] coefficients, double argument)
134134

135135

136136
/** {@inheritDoc}
137-
* @since 3.1
138137
* @throws NoDataException if {@code coefficients} is empty.
139138
* @throws NullArgumentException if {@code coefficients} is {@code null}.
139+
* @since 3.1
140140
*/
141141
@Override
142142
public DerivativeStructure value(final DerivativeStructure t)

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/regression/OLSMultipleLinearRegression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ public double calculateTotalSumOfSquares() {
172172
* Returns the sum of squared residuals.
173173
*
174174
* @return residual sum of squares
175-
* @since 2.2
176175
* @throws org.apache.commons.math4.legacy.linear.SingularMatrixException if the design matrix is singular
177176
* @throws NullPointerException if the data for the model have not been loaded
177+
* @since 2.2
178178
*/
179179
public double calculateResidualSumOfSquares() {
180180
final RealVector residuals = calculateResiduals();

0 commit comments

Comments
 (0)