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
The following commit(s) were added to refs/heads/master by this push:
new dc0f87b Replace getArgument() with arg()
dc0f87b is described below
commit dc0f87b8af952c20e7fc5f96aa87b4b5a1dc9af7
Author: Alex Herbert <[email protected]>
AuthorDate: Mon Dec 9 00:06:49 2019 +0000
Replace getArgument() with arg()
---
.../java/org/apache/commons/numbers/complex/streams/ComplexUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/commons-numbers-complex-streams/src/main/java/org/apache/commons/numbers/complex/streams/ComplexUtils.java
b/commons-numbers-complex-streams/src/main/java/org/apache/commons/numbers/complex/streams/ComplexUtils.java
index 183cb0d..a90ef83 100644
---
a/commons-numbers-complex-streams/src/main/java/org/apache/commons/numbers/complex/streams/ComplexUtils.java
+++
b/commons-numbers-complex-streams/src/main/java/org/apache/commons/numbers/complex/streams/ComplexUtils.java
@@ -1571,7 +1571,7 @@ public final class ComplexUtils {
final int length = c.length;
final double[] i = new double[length];
for (int x = 0; x < length; x++) {
- i[x] = c[x].getArgument();
+ i[x] = c[x].arg();
}
return i;
}