Author: sebb
Date: Wed Feb 2 09:44:55 2011
New Revision: 1066393
URL: http://svn.apache.org/viewvc?rev=1066393&view=rev
Log:
Drop unused last parameter
Modified:
commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java
Modified:
commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java?rev=1066393&r1=1066392&r2=1066393&view=diff
==============================================================================
---
commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java
(original)
+++
commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java
Wed Feb 2 09:44:55 2011
@@ -44,8 +44,8 @@ public class FastMathTestPerformance {
System.getProperty("java.version"),
System.getProperty("java.runtime.version","?"),
System.getProperty("java.vm.name"),
- System.getProperty("java.vm.version"),
- ""));
+ System.getProperty("java.vm.version")
+ ));
}
private static void report(String name, long strictMathTime, long
fastMathTime, long mathTime) {