OSDN Git Service

2003-06-24 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 24 Jun 2003 11:19:05 +0000 (11:19 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 24 Jun 2003 11:19:05 +0000 (11:19 +0000)
* java/nio/Buffer.java
(cap): Made package-private.
(pos): Likewise.
(limit): Likewise.
(mark): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68417 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/nio/Buffer.java

index e7ec7dc..90cd57f 100644 (file)
@@ -1,5 +1,13 @@
 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
        (shutdownInput): Made it non-abstract method throwing an exception
        like in SUNs JRE.
index 693765f..9221d75 100644 (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.
   //