Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4221930

java.util.Arrays.equals(float[], float[]) spec typos

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.3.0
    • 1.2.1
    • docs
    • 1.3
    • sparc
    • solaris_2.5



      Name: ksC84122 Date: 03/19/99


      The javadoc for java.util.Arrays.equals(float[], float[]) says:

      -------------- javadoc excerpt -------------------

      "Two doubles d1 and d2 are considered equal if:
             ^
             |
          new Double(d1).equals(new Double(d2))
                ^ ^
                | |
      (Unlike the == operator, this method considers NaN equals to itself, and 0.0d unequal to -0.0d.)".
                                                                                  ^ ^
                                                                                  | |

      "See Also:
                  Double#equals(Double)"
                    ^ ^
                    | |

      -------------- end of javadoc excerpt ------------

      "Two doubles d1 and d2" should be replaced with "Two floats f1 and f2".

      "new Double(d1).equals(new Double(d2))" should be replaced with "new Float(f1).equals(new Float(f2))".

      "and 0.0d unequal to -0.0d" should be replaced with "and 0.0f unequal to -0.0f".

      "Double#equals(Double)" should be replaced with "Float.equals(Float)"

      ======================================================================

            shommel Scott Hommel (Inactive)
            skosunw Sko Sko (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: