re PR java/12426 (gcj allows access to private members from superclass)
authorMichael Koch <konqueror@gmx.de>
Fri, 26 Sep 2003 22:02:05 +0000 (22:02 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Fri, 26 Sep 2003 22:02:05 +0000 (22:02 +0000)
2003-09-27  Michael Koch  <konqueror@gmx.de>

* gnu/java/nio/SelectionKeyImpl.java
(ch): Make package-private again. Jikes found this bug.
Jeff Sturm submitted PR12426 for this to bugzilla
to fix this bug in gcj.

From-SVN: r71841

libjava/ChangeLog
libjava/gnu/java/nio/SelectionKeyImpl.java

index ec64e3ae77314cc4846537ed01d236534e14a135..7a6d4bf141191ce1ec19eedc58f7632696f3cd31 100644 (file)
@@ -1,3 +1,10 @@
+2003-09-27  Michael Koch  <konqueror@gmx.de>
+
+       * gnu/java/nio/SelectionKeyImpl.java
+       (ch): Make package-private again. Jikes found this bug.
+       Jeff Sturm submitted PR12426 for this to bugzilla
+       to fix this bug in gcj.
+
 2003-09-26  Michael Koch  <konqueror@gmx.de>
 
        * java/rmi/server/RMIClassLoader.java:
index 0f704c9fb91194e6f8853876a9087efaf232dc7c..0d3636037b6165131627cc858be6b93001c88560 100644 (file)
@@ -48,7 +48,7 @@ public abstract class SelectionKeyImpl extends AbstractSelectionKey
   private int readyOps;
   private int interestOps;
   private SelectorImpl impl;
-  private SelectableChannel ch;
+  SelectableChannel ch;
 
   public SelectionKeyImpl (SelectableChannel ch, SelectorImpl impl)
   {