-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P2
-
Affects Version/s: 5.0
-
Component/s: client-libs
-
b50
-
x86
-
windows_nt
Name: keR10081 Date: 04/21/2004
Due to some putback error in the fix for bug 4997165, we left one line
of code unchanged while having its correct variant added. Namely, fix
should replace
! listSelectionModel.clearSelection();
with
! if (isShowing()) listSelectionModel.clearSelection();
but currently we have
if (isShowing()) {
listSelectionModel.clearSelection();
}
listSelectionModel.clearSelection();
this may lead to failure of tests mentioned in 4997165 on some platforms.
======================================================================
- relates to
-
JDK-4997165 REGRESSION:JFileChooser throws NPE
-
- Closed
-