You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/12/06 18:29:11 UTC

[commons-numbers] 17/19: Trailing whitespace.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 8dd939b29ea7f525ac4dfcc42305a32bbb7f956e
Author: aherbert <ah...@apache.org>
AuthorDate: Fri Dec 6 17:10:00 2019 +0000

    Trailing whitespace.
---
 .../src/test/java/org/apache/commons/numbers/complex/ComplexTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
index 8efd26d..69e4c3f 100644
--- a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
+++ b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/ComplexTest.java
@@ -1308,7 +1308,7 @@ public class ComplexTest {
         final double min = -5;
         final double range = -2 * min;
         for (int i = 0; i < 10; i++) {
-            final Complex z = Complex.ofCartesian(min + range * rng.nextDouble(), 
+            final Complex z = Complex.ofCartesian(min + range * rng.nextDouble(),
                                                   min + range * rng.nextDouble());
             final Complex c1 = z.multiply(z);
             final Complex c2 = z.square();