mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 05:36:45 +08:00
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:
parent
ed1f9b7c13
commit
3a63ab4010
@ -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
|
||||
|
@ -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.
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user