Make method arguments final.

This commit is contained in:
Thomas Neidhart 2015-02-25 07:56:38 +01:00
parent 96ba5ec216
commit 6b1b592887
1 changed files with 1 additions and 1 deletions

View File

@ -1457,7 +1457,7 @@ public class FastMath {
* @param y a double
* @return double
*/
public static double pow(double x, double y) {
public static double pow(final double x, final double y) {
final double lns[] = new double[2];
if (y == 0.0) {