This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: java.net.NetworkInterface


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


this merges java.net.NetworkInterface with classpath.


Michael
- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+ZEFcWSOgCCdjSDsRAgwnAJ9cXz+qqiRk/HjapJR6LeWY4ewyiwCfRuS/
Jm/92kVoxkBOFiABE5SLvso=
=GbOh
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1765
diff -u -r1.1765 ChangeLog
--- ChangeLog	3 Mar 2003 23:25:52 -0000	1.1765
+++ ChangeLog	4 Mar 2003 06:00:02 -0000
@@ -1,3 +1,7 @@
+2003-03-03  Michael Koch  <konqueror at gmx dot de>
+
+	* java/net/NetworkInterface.java: Merged with classpath.
+
 2003-03-03  Tom Tromey  <tromey at redhat dot com>
 
 	* verify.cc (handle_jsr_insn): Don't fail if `jsr' appears at end
Index: java/net/NetworkInterface.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/net/NetworkInterface.java,v
retrieving revision 1.4
diff -u -r1.4 NetworkInterface.java
--- java/net/NetworkInterface.java	13 Feb 2003 07:33:39 -0000	1.4
+++ java/net/NetworkInterface.java	4 Mar 2003 06:00:02 -0000
@@ -1,5 +1,5 @@
 /* NetworkInterface.java
-   Copyright (C) 2002 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -200,7 +200,6 @@
       return false;
    
     NetworkInterface tmp = (NetworkInterface) obj;
-    
     return (name.equals (tmp.name)
             && inetAddresses.equals (tmp.inetAddresses));
   }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]