PushbackInputStream.java, [...]: Merged new versions from classpath.

2003-05-25  Michael Koch  <konqueror@gmx.de>

	* java/io/PushbackInputStream.java,
	java/net/Authenticator.java,
	java/net/ContentHandler.java,
	java/net/ContentHandlerFactory.java,
	java/net/DatagramSocket.java,
	java/net/DatagramSocketImpl.java,
	java/net/DatagramSocketImplFactory.java,
	java/net/FileNameMap.java,
	java/net/SocketImplFactory.java,
	java/net/SocketOptions.java,
	java/net/URLStreamHandlerFactory.java:
	Merged new versions from classpath.

From-SVN: r67165
This commit is contained in:
Michael Koch 2003-05-25 11:40:19 +00:00 committed by Michael Koch
parent eceea3010f
commit c7684ffe55
12 changed files with 386 additions and 393 deletions

View file

@ -74,8 +74,8 @@ public class PushbackInputStream extends FilterInputStream
/**
* This method initializes a <code>PushbackInputStream</code> to
* read from the * specified subordinate <code>InputStream</code>
* with a default pushback buffer * size of 1.
* read from the specified subordinate <code>InputStream</code>
* with a default pushback buffer size of 1.
*
* @param in The subordinate stream to read from
*/
@ -302,7 +302,7 @@ public class PushbackInputStream extends FilterInputStream
* <code>skip</code> method on the underlying <code>InputStream</code> to
* skip additional bytes if necessary.
*
* @param num_bytes The requested number of bytes to skip
* @param numBytes The requested number of bytes to skip
*
* @return The actual number of bytes skipped.
*