I'm checking this in.

This fixes PR classpath/22989.  We don't need all these overrides that
do nothing, but it was simpler to fix the two bogus calls.

Tom

Index: ChangeLog
from  Tom Tromey  <[EMAIL PROTECTED]>
        PR classpath/22989:
        * java/net/Inet4Address.java (isMCNodeLocal): Use super call.
        (isMCOrgLocal): Likewise.

Index: java/net/Inet4Address.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/net/Inet4Address.java,v
retrieving revision 1.16
diff -u -r1.16 Inet4Address.java
--- java/net/Inet4Address.java 2 Jul 2005 20:32:39 -0000 1.16
+++ java/net/Inet4Address.java 26 Jul 2005 22:41:51 -0000
@@ -142,7 +142,7 @@
    */
   public boolean isMCNodeLocal()
   {
-    return isMCNodeLocal();
+    return super.isMCNodeLocal();
   }
 
   /**
@@ -172,7 +172,7 @@
    */
   public boolean isMCOrgLocal()
   {
-    return isMCOrgLocal();
+    return super.isMCOrgLocal();
   }
 
   /**


_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to