Skip to content
Snippets Groups Projects
Commit e5eb37c3 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

remove unnecessary cast

parent 78a6e0db
Branches
Tags
No related merge requests found
...@@ -186,7 +186,7 @@ public class BigDataBrowserPlugIn implements PlugIn ...@@ -186,7 +186,7 @@ public class BigDataBrowserPlugIn implements PlugIn
final JLabel label = ( JLabel ) super.getListCellRendererComponent( final JLabel label = ( JLabel ) super.getListCellRendererComponent(
list, value, index, isSelected, cellHasFocus ); list, value, index, isSelected, cellHasFocus );
label.setIcon( imageMap.get( ( String ) value ) ); label.setIcon( imageMap.get( value ) );
label.setHorizontalTextPosition( JLabel.RIGHT ); label.setHorizontalTextPosition( JLabel.RIGHT );
label.setFont( font ); label.setFont( font );
return label; return label;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment