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

* java/net/DatagramSocket.java
	(connect): Merged comment from classpath.
	(receive): Merged documentation from classpath.
	* java/net/Socket.java
	(setSoTimeout): Clarified documentation.
	* java/net/URL.java
	(getPath): Merged from classpath.
	(getUserInfo): Merged from classpath.
	(getQuery): Merged from classpath.
	* java/net/URLStreamHandler.java
	(toExternalForm): Merged from classpath.

From-SVN: r63714
This commit is contained in:
Michael Koch 2003-03-03 08:26:52 +00:00 committed by Michael Koch
parent 6e1b3a7c94
commit 6579ac0c00
5 changed files with 30 additions and 12 deletions

View file

@ -692,10 +692,10 @@ public class Socket
* this option implies that there is no timeout (ie, operations will
* block forever). On systems that have separate read and write timeout
* values, this method returns the read timeout. This
* value is in thousandths of a second (****????*****)
* value is in milliseconds.
*
* @param timeout The length of the timeout in thousandth's of a second or
* 0 if not set
* @param timeout The length of the timeout in milliseconds, or
* 0 to indicate no timeout.
*
* @exception SocketException If an error occurs or Socket not connected
*