Javadoc.

Project: http://git-wip-us.apache.org/repos/asf/commons-numbers/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-numbers/commit/bc690a66
Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/bc690a66
Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/bc690a66

Branch: refs/heads/feature__NUMBERS-51__field
Commit: bc690a66125db034b7ec86ad5c40aa0294bfedc6
Parents: 4b213be
Author: Gilles Sadowski <gil...@harfang.homelinux.org>
Authored: Fri Feb 2 01:15:54 2018 +0100
Committer: Gilles Sadowski <gil...@harfang.homelinux.org>
Committed: Fri Feb 2 01:15:54 2018 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/commons/numbers/complex/Complex.java    | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/bc690a66/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java
----------------------------------------------------------------------
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 d9d096a..19eb2fc 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
@@ -108,7 +108,6 @@ public class Complex implements Serializable  {
      * @param r the modulus of the complex number to create
      * @param theta the argument of the complex number to create
      * @return {@code Complex}
-     * @since 1.1
      */
     public Complex polar(double r, double theta) {
         checkNotNegative(r);
@@ -719,7 +718,6 @@ public class Complex implements Serializable  {
      * {@code asinh(z) = log(z+sqrt(z^2+1))}
      * </p><p>
      * @return the inverse hyperbolic cosine of this complex number
-     * @since 1.2
      */
     public Complex asinh(){
         if (neitherInfiniteNorZeroNorNaN(real) &&
@@ -753,7 +751,6 @@ public class Complex implements Serializable  {
      * {@code atanh(z) = log((1+z)/(1-z))/2}
      * </p><p>
      * @return the inverse hyperbolic cosine of this complex number
-     * @since 1.2
      */
     public Complex atanh(){
         if (real == 0 &&
@@ -789,7 +786,6 @@ public class Complex implements Serializable  {
      * {@code acosh(z) = log(z+sqrt(z^2-1))}
      * </p><p>
      * @return the inverse hyperbolic cosine of this complex number
-     * @since 1.2
      */
     public Complex acosh() {
         return square().subtract(ONE).sqrt().add(this).log();

Reply via email to