|
Evaluation
|
=== bug6638195.java ====
56c56
< public Void call() {
---
> public Void call() throws Exception {
71c71
< public Object call() {
---
> public Object call() throws Exception {
97,100c97,100
< private volatile boolean getNextEventInvoked = false;
< private volatile boolean beforeDispatchInvoked = false;
< private volatile boolean afterDispatchInvoked = false;
< public AWTEvent getNextEvent(EventQueue eventQueue)
---
> private boolean getNextEventInvoked = false;
> private boolean beforeDispatchInvoked = false;
> private boolean afterDispatchInvoked = false;
> public synchronized AWTEvent getNextEvent(EventQueue eventQueue)
105c105
< public Object beforeDispatch(AWTEvent event) {
---
> public synchronized Object beforeDispatch(AWTEvent event) {
109c109
< public void afterDispatch(AWTEvent event, Object handle) {
---
> public synchronized void afterDispatch(AWTEvent event, Object handle) {
112c112
< private boolean allInvoked() {
---
> private synchronized boolean allInvoked() {
==========
This fixes the compilation problem and hopefully should fix test failures.
Posted Date : 2008-06-09 18:10:36.0
|