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 5db7d736976477fe20e3f31cf81b582e40035515 Author: Alex Herbert <[email protected]> AuthorDate: Sun Dec 8 23:42:57 2019 +0000 Remove unused private methods --- .../org/apache/commons/numbers/complex/Complex.java | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java index 6530e00..ab28944 100644 --- a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java +++ b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java @@ -1082,24 +1082,6 @@ public final class Complex implements Serializable { } /** - * Multiply the Complex by I. - * - * @return the result (iz) - */ - private Complex multiplyByI() { - return new Complex(-imaginary, real); - } - - /** - * Multiply the Complex by -I. - * - * @return the result (-iz) - */ - private Complex multiplyByNegI() { - return new Complex(imaginary, -real); - } - - /** * Compute the * <a href="http://mathworld.wolfram.com/InverseHyperbolicSine.html"> * inverse hyperbolic sine</a> of this complex number.
