/[classpath]/classpath/java/math/BigInteger.java
ViewVC logotype

Diff of /classpath/java/math/BigInteger.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.21 by mkoch, Thu Oct 9 13:19:44 2003 UTC revision 1.22 by mark, Sat Nov 15 22:41:48 2003 UTC
# Line 1565  public class BigInteger extends Number i Line 1565  public class BigInteger extends Number i
1565    /* Assumes this and obj are both canonicalized. */    /* Assumes this and obj are both canonicalized. */
1566    public boolean equals(Object obj)    public boolean equals(Object obj)
1567    {    {
1568      if (obj == null || ! (obj instanceof BigInteger))      if (! (obj instanceof BigInteger))
1569        return false;        return false;
1570      return equals(this, (BigInteger) obj);      return equals(this, (BigInteger) obj);
1571    }    }

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26