Make Checkstype happy.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@928245 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0d3ccbe3d2
commit
bc877cbcf8
|
@ -164,6 +164,11 @@
|
|||
<property name="onCommentFormat" value="CHECKSTYLE\: resume HideUtilityClassConstructor"/>
|
||||
<property name="checkFormat" value="HideUtilityClassConstructor"/>
|
||||
</module>
|
||||
<module name="SuppressionCommentFilter">
|
||||
<property name="offCommentFormat" value="CHECKSTYLE\: stop MultipleVariableDeclarations"/>
|
||||
<property name="onCommentFormat" value="CHECKSTYLE\: resume MultipleVariableDeclarations"/>
|
||||
<property name="checkFormat" value="MultipleVariableDeclarations"/>
|
||||
</module>
|
||||
|
||||
</module>
|
||||
|
||||
|
|
|
@ -224,7 +224,6 @@ public class BicubicSplineInterpolatingFunction
|
|||
return a;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 2D-spline function.
|
||||
*
|
||||
|
@ -232,12 +231,14 @@ public class BicubicSplineInterpolatingFunction
|
|||
*/
|
||||
class BicubicSplineFunction
|
||||
implements BivariateRealFunction {
|
||||
//CHECKSTYLE: stop MultipleVariableDeclarations
|
||||
/** Coefficients */
|
||||
private final double
|
||||
a00, a01, a02, a03,
|
||||
a10, a11, a12, a13,
|
||||
a20, a21, a22, a23,
|
||||
a30, a31, a32, a33;
|
||||
//CHECKSTYLE: resume MultipleVariableDeclarations
|
||||
|
||||
/**
|
||||
* @param a Spline coefficients
|
||||
|
|
Loading…
Reference in New Issue