Files
Mozilla/mozilla/grendel/ui/FolderCombo.java
grail%cafebabe.org 48d3b28c3a Stupid stupid stupid. JComboBox.removeAllItems() NullExceptions if
there's a zero count. The safe way to call it is by:

if (combobox.getItemCount() > 0) {
  combobox.removeAllItems();
}

This is stupid.


git-svn-id: svn://10.0.0.236/trunk@18071 18797224-902f-48f8-a5cc-f745e15eee43
1999-01-20 09:53:28 +00:00

4.8 KiB