NetworkInterface.java: Merged with classpath.

2003-03-03  Michael Koch  <konqueror@gmx.de>

	* java/net/NetworkInterface.java: Merged with classpath.

From-SVN: r63769
This commit is contained in:
Michael Koch 2003-03-04 06:00:43 +00:00 committed by Michael Koch
parent 234c071be0
commit 9b23f09dc1
2 changed files with 5 additions and 2 deletions

View file

@ -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 @@ public final class NetworkInterface
return false;
NetworkInterface tmp = (NetworkInterface) obj;
return (name.equals (tmp.name)
&& inetAddresses.equals (tmp.inetAddresses));
}