Changeset 18280 in josm
- Timestamp:
- 2021-10-17T06:21:49+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/widgets/JosmComboBox.java
r18257 r18280 298 298 * @return the list or null 299 299 */ 300 @SuppressWarnings(" unchecked")301 public JList <E>getList() {300 @SuppressWarnings("rawtypes") 301 public JList getList() { 302 302 Object popup = getUI().getAccessibleChild(this, 0); 303 303 if (popup != null && popup instanceof javax.swing.plaf.basic.ComboPopup) { … … 306 306 return null; 307 307 } 308 309 // get the popup list310 308 311 309 /** … … 388 386 try { 389 387 // First try an implementation-dependent method to get the exact number. 388 @SuppressWarnings("unchecked") 390 389 JList<E> jList = getList(); 391 390
Note:
See TracChangeset
for help on using the changeset viewer.