Repository: commons-math Updated Branches: refs/heads/master cb177b56b -> 14619d3e6
Remove console output. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/14619d3e Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/14619d3e Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/14619d3e Branch: refs/heads/master Commit: 14619d3e60dbedc1f5171fc9adf710cda1f6f79c Parents: cb177b5 Author: tn <[email protected]> Authored: Tue Jan 13 10:40:44 2015 +0100 Committer: tn <[email protected]> Committed: Tue Jan 13 10:40:44 2015 +0100 ---------------------------------------------------------------------- src/main/java/org/apache/commons/math3/util/FastMath.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/14619d3e/src/main/java/org/apache/commons/math3/util/FastMath.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/util/FastMath.java b/src/main/java/org/apache/commons/math3/util/FastMath.java index 9126df3..5178215 100644 --- a/src/main/java/org/apache/commons/math3/util/FastMath.java +++ b/src/main/java/org/apache/commons/math3/util/FastMath.java @@ -873,7 +873,6 @@ public class FastMath { * intPartA will have the upper 22 bits, intPartB will have the lower * 52 bits. */ - System.out.println("Computing exp(" + x + ")"); if (x < 0.0) { intVal = (int) -x;
