[multiple changes]
2004-06-27 Mark Wielaard <mark@klomp.org> * java/awt/EventQueue.java (postEvent): Throw NullPointerException when argument is null. 2004-06-26 Mark Wielaard <mark@klomp.org> * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkFileDialogPeer.c (ok_clicked): Use Ljava/lang/String; not Ljava.lang.String; in JNI GetMethodID call. (cancel_clicked): Likewise. From-SVN: r83731
This commit is contained in:
committed by
Mark Wielaard
parent
093ff71e71
commit
66a74d2a07
@@ -161,6 +161,9 @@ public class EventQueue
|
||||
*/
|
||||
public synchronized void postEvent(AWTEvent evt)
|
||||
{
|
||||
if (evt == null)
|
||||
throw new NullPointerException();
|
||||
|
||||
if (next != null)
|
||||
{
|
||||
next.postEvent(evt);
|
||||
|
||||
Reference in New Issue
Block a user