-
Bug
-
Resolution: Fixed
-
P3
-
1.0.2
-
1.0.k
-
sparc
-
solaris_2.5
-
Not verified
The routine java.util.Observable.notifyObservers() is synchronized, so it gains ownership of the object's monitor. It keeps this lock through the duration of the notification, which means in all the observers' update routines. This is not right; it makes things deadlock for no good reason. There's no reason to keep ownership of the monitor.