Skip to content

Commit

Permalink
Make Checkstype happy.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@928245 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
psteitz committed Mar 27, 2010
1 parent e78c3d1 commit 5baa816
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Original file line number Diff line number Diff line change
Expand Up @@ -224,20 +224,21 @@ private double[] computeSplineCoefficients(double[] beta) {
return a;
}
}

/**
* 2D-spline function.
*
*
* @version $Revision$ $Date$
*/
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
Expand Down

0 comments on commit 5baa816

Please sign in to comment.