git://git.nikiroo.be
/
nikiroo-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d9f513
)
compat fix
author
Niki Roo
<niki@nikiroo.be>
Wed, 22 Apr 2020 18:09:37 +0000
(20:09 +0200)
committer
Niki Roo
<niki@nikiroo.be>
Wed, 22 Apr 2020 18:09:37 +0000
(20:09 +0200)
compat/JList6.java
patch
|
blob
|
blame
|
history
diff --git
a/compat/JList6.java
b/compat/JList6.java
index e0aea42ef51f6b4c5057960fff64a06e87c5dd8e..ca44165067d0676ad62861c3005dc5452fb19469 100644
(file)
--- a/
compat/JList6.java
+++ b/
compat/JList6.java
@@
-27,7
+27,7
@@
public class JList6<E> extends JList {
* instead
*/
public void setCellRenderer(ListCellRenderer cellRenderer) {
- s
etCellRenderer((ListCellRenderer6<E>)
cellRenderer);
+ s
uper.setCellRenderer(
cellRenderer);
}
/**
@@
-59,7
+59,7
@@
public class JList6<E> extends JList {
@Override
@Deprecated
public void setModel(ListModel model) {
- s
etModel((ListModel6<E>)
model);
+ s
uper.setModel(
model);
}
/**