Commit 3e591bd2 by Tom Tromey Committed by Tom Tromey

* java/awt/AWTKeyStroke.java (vktable): Now package-private.

From-SVN: r98752
parent 0d767acf
2005-04-25 Tom Tromey <tromey@redhat.com>
* java/awt/AWTKeyStroke.java (vktable): Now package-private.
2005-04-25 Thomas Fitzsimmons <fitzsim@redhat.com>
* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c
......
......@@ -108,11 +108,12 @@ public class AWTKeyStroke implements Serializable
private static Constructor ctor;
/**
* A table of keyCode names to values.
* A table of keyCode names to values. This is package-private to
* avoid an accessor method.
*
* @see #getAWTKeyStroke(String)
*/
private static final HashMap vktable = new HashMap();
static final HashMap vktable = new HashMap();
static
{
// Using reflection saves the hassle of keeping this in sync with KeyEvent,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment