* java/lang/SecurityManager.java
(checkAwtEventQueueAccess): Implemented.
From-SVN: r80314
+2004-04-01 Michael Koch <konqueror@gmx.de>
+
+ * java/lang/SecurityManager.java
+ (checkAwtEventQueueAccess): Implemented.
+
2004-04-01 Gary Benson <gbenson@redhat.com>
* resolve.cc (_Jv_ResolvePoolEntry): Put field name in exception.
*/
public void checkAwtEventQueueAccess()
{
- // Should be: checkPermission(new AWTPermission("accessEventQueue"));
- throw new SecurityException("Cannot access the AWT event queue.");
+ checkPermission(new AWTPermission("accessEventQueue"));
}
/**