From 4fcfb53d8f6c5c73c75aed428471cc253932d45b Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Wed, 2 Feb 2011 09:44:55 +0000 Subject: [PATCH] Drop unused last parameter git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1066393 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math/util/FastMathTestPerformance.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java b/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java index 5fde6869b..6b760d847 100644 --- a/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java +++ b/src/test/java/org/apache/commons/math/util/FastMathTestPerformance.java @@ -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) {