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:
committed by
Michael Koch
parent
ed1f9b7c13
commit
3a63ab4010
@@ -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.
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user