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
This commit is contained in:
Michael Koch 2003-06-24 11:19:05 +00:00 committed by Michael Koch
parent ed1f9b7c13
commit 3a63ab4010
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,11 @@
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

View File

@ -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
exception statement from your version. */
package java.nio;
public abstract class Buffer
{
private int cap = 0;
private int limit = 0;
private int pos = 0;
private int mark = -1;
int cap = 0;
int limit = 0;
int pos = 0;
int mark = -1;
// Creates a new Buffer.
//