classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Patch: FYI: PR classpath/22989


From: Tom Tromey
Subject: [cp-patches] Patch: FYI: PR classpath/22989
Date: 26 Jul 2005 16:39:23 -0600

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  <address@hidden>
        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();
   }
 
   /**




reply via email to

[Prev in Thread] Current Thread [Next in Thread]