From 282cd1de7d51db4b1cea2684ee4b17d9e27e7853 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Thu, 16 Aug 2007 20:40:28 +0000 Subject: [PATCH] fixed a non-static call to a static method git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@566837 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/transform/FastFourierTransformerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java b/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java index aedd4e1bc..94636118e 100644 --- a/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java +++ b/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java @@ -62,7 +62,7 @@ public final class FastFourierTransformerTest extends TestCase { } double x2[] = {10.4, 21.6, 40.8, 13.6, 23.2, 32.8, 13.6, 19.2}; - transformer.scaleArray(x2, 1.0 / Math.sqrt(x2.length)); + FastFourierTransformer.scaleArray(x2, 1.0 / Math.sqrt(x2.length)); Complex y2[] = y; result = transformer.transform2(y2);