-
Bug
-
Resolution: Fixed
-
P5
-
1.2.0, 5.0
-
b02
-
generic
-
generic
-
Not verified
Name: krT82822 Date: 01/19/99
Source code from java/awt/Canvas.java:
String constructComponentName() {
synchronized (getClass()) {
return base + nameCounter++;
}
}
This wasn't synchronized in 1.1.7, but it is synchronized
in 1.2. Unfortunately, it is synchronized on the wrong
object. getClass() returns different objects for (say)
instances of different classes derived from Canvas.
The above is the common idiom used in many java.awt classes.
(Review ID: 52534)
======================================================================
Source code from java/awt/Canvas.java:
String constructComponentName() {
synchronized (getClass()) {
return base + nameCounter++;
}
}
This wasn't synchronized in 1.1.7, but it is synchronized
in 1.2. Unfortunately, it is synchronized on the wrong
object. getClass() returns different objects for (say)
instances of different classes derived from Canvas.
The above is the common idiom used in many java.awt classes.
(Review ID: 52534)
======================================================================
- duplicates
-
JDK-4843667 Components shouldn't synchronize on getClass()
-
- Closed
-