Commit 3a63ab40 by Michael Koch Committed by Michael Koch

2003-06-24 Michael Koch <konqueror@gmx.de>

	* java/nio/Buffer.java
	(cap): Made package-private.
	(pos): Likewise.
	(limit): Likewise.
	(mark): Likewise.

From-SVN: r68417
parent ed1f9b7c
2003-06-24 Michael Koch <konqueror@gmx.de> 2003-06-24 Michael Koch <konqueror@gmx.de>
* java/nio/Buffer.java
(cap): Made package-private.
(pos): Likewise.
(limit): Likewise.
(mark): Likewise.
2003-06-24 Michael Koch <konqueror@gmx.de>
* java/net/SocketImpl.java * java/net/SocketImpl.java
(shutdownInput): Made it non-abstract method throwing an exception (shutdownInput): Made it non-abstract method throwing an exception
like in SUNs JRE. like in SUNs JRE.
......
...@@ -35,14 +35,15 @@ this exception to your version of the library, but you are not ...@@ -35,14 +35,15 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */ exception statement from your version. */
package java.nio; package java.nio;
public abstract class Buffer public abstract class Buffer
{ {
private int cap = 0; int cap = 0;
private int limit = 0; int limit = 0;
private int pos = 0; int pos = 0;
private int mark = -1; int mark = -1;
// Creates a new Buffer. // Creates a new Buffer.
// //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment