mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 12:23:59 +08:00
PlainDatagramSocketImpl.java: Merged copyright header.
2005-04-20 Michael Koch <konqueror@gmx.de> * gnu/java/net/PlainDatagramSocketImpl.java: Merged copyright header. * gnu/java/net/PlainSocketImpl.java: Reorganized import statements. Fixed @author tags. From-SVN: r98443
This commit is contained in:
parent
bd2865bc6c
commit
47af138fc5
@ -1,3 +1,10 @@
|
||||
2005-04-20 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* gnu/java/net/PlainDatagramSocketImpl.java:
|
||||
Merged copyright header.
|
||||
* gnu/java/net/PlainSocketImpl.java:
|
||||
Reorganized import statements. Fixed @author tags.
|
||||
|
||||
2005-04-20 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* gnu/java/lang/ClassHelper.java,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* PlainDatagramSocketImpl.java -- Default DatagramSocket implementation
|
||||
Copyright (C) 1998, 1999, 2001, 2003, 2004 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 1999, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -39,8 +39,10 @@ exception statement from your version. */
|
||||
|
||||
package gnu.java.net;
|
||||
|
||||
import java.io.InputStream;
|
||||
import gnu.classpath.Configuration;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.net.InetAddress;
|
||||
import java.net.InetSocketAddress;
|
||||
@ -48,7 +50,6 @@ import java.net.SocketAddress;
|
||||
import java.net.SocketException;
|
||||
import java.net.SocketImpl;
|
||||
import java.net.SocketOptions;
|
||||
import gnu.classpath.Configuration;
|
||||
|
||||
/**
|
||||
* Written using on-line Java Platform 1.2 API Specification, as well
|
||||
@ -62,9 +63,9 @@ import gnu.classpath.Configuration;
|
||||
* combination of Java and native routines to implement standard BSD
|
||||
* style sockets of family AF_INET and types SOCK_STREAM and SOCK_DGRAM
|
||||
*
|
||||
* @author Per Bothner <bothner@cygnus.com>
|
||||
* @author Nic Ferrier <nferrier@tapsellferrier.co.uk>
|
||||
* @author Aaron M. Renn <arenn@urbanophile.com>
|
||||
* @author Per Bothner (bothner@cygnus.com)
|
||||
* @author Nic Ferrier (nferrier@tapsellferrier.co.uk)
|
||||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
*/
|
||||
public final class PlainSocketImpl extends SocketImpl
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user