-
Enhancement
-
Resolution: Fixed
-
P4
-
6
-
b03
-
x86
-
windows_vista
A DESCRIPTION OF THE REQUEST :
The following lines of code in KeyboardManager.java cause a stack dump to be sent to stdout when I manually invoke the action listeners on a listbox
if (e.isConsumed()) {
System.out.println("Aquired pre-used event!");
Thread.dumpStack();
}
JUSTIFICATION :
It generates information to standard out that should either be logged or removed altogether since there is nothing a developer can do about it. It looks like internal debugging code
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
A logger should be used to log this information
The following lines of code in KeyboardManager.java cause a stack dump to be sent to stdout when I manually invoke the action listeners on a listbox
if (e.isConsumed()) {
System.out.println("Aquired pre-used event!");
Thread.dumpStack();
}
JUSTIFICATION :
It generates information to standard out that should either be logged or removed altogether since there is nothing a developer can do about it. It looks like internal debugging code
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
A logger should be used to log this information
- links to
-
Commit(master) openjdk/jdk/1130c1bc
-
Review(master) openjdk/jdk/25851