-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.1
-
generic
-
generic
Name: skT88420 Date: 05/17/99
In jdk\1.2.1\src\java\awt\Component.java
method: printAll( Graphics g );
line number: 1963
Here is the method:
public void printAll(Graphics g) {
ComponentPeer peer = this.peer;
if (visible && (peer != null)) {
validate();
Graphics cg = g.create(0, 0, width, height);
cg.setFont(getFont());
try {
if (peer instanceof java.awt.peer.LightweightPeer) {
lightweightPrint(g);
} else {
peer.print(g);
}
} finally {
cg.dispose();
}
}
}
The line number reads as follows:
lightweightPrint(g);
I believe this should be:
lightweightPrint( cg );
My question is, why is the following code being declared and
setup if it is not used anywhere?
Graphics cg = g.create(0, 0, width, height);
cg.setFont(getFont());
Please let me know if I am wrong.
(Review ID: 83161)
======================================================================
- duplicates
-
JDK-4212564 Component.printAll() passes invalid Graphics object
-
- Resolved
-