From 8c14d78cee0c7f74998c63bb55382f2d555c03a8 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Mon, 17 Jan 2011 19:58:00 +0000 Subject: [PATCH] MATH-482 FastMath.max(50.0f, -50.0f) => -50.0f; should be +50.0f git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1060062 13f79535-47bb-0310-9956-ffa450edef68 --- src/site/xdoc/changes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/xdoc/changes.xml b/src/site/xdoc/changes.xml index 3356fb05c..8cd23a631 100644 --- a/src/site/xdoc/changes.xml +++ b/src/site/xdoc/changes.xml @@ -52,7 +52,7 @@ The type attribute can be add,update,fix,remove. If the output is not quite correct, check for invisible trailing spaces! --> - + FastMath.max(50.0f, -50.0f) => -50.0f; should be +50.0f Fixed FastMath.max(float, float) so it returns correct value.