Skip to content

Commit

Permalink
'#1864 Removes reference to unused class
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdalla committed Feb 22, 2024
1 parent 16a5caf commit a241b6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

import javax.swing.DefaultListModel;
import javax.swing.ImageIcon;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
Expand Down Expand Up @@ -99,7 +100,6 @@
import iped.app.ui.ClearFilterListener;
import iped.app.ui.ColumnsManager;
import iped.app.ui.controls.CheckboxListCellRenderer;
import iped.app.ui.controls.JComboCheckBox;
import iped.app.ui.themes.ThemeManager;
import iped.data.IItemId;
import iped.engine.search.QueryBuilder;
Expand Down Expand Up @@ -154,7 +154,7 @@ public class IpedChartsPanel extends JPanel implements ResultSetViewer, TableMod
IpedChartPanel chartPanel = null;
JList legendList = new JList();
JScrollPane listScroller = new JScrollPane(legendList);
JComboCheckBox<TimeEventGroup> tegCombo = new JComboCheckBox<>();
JComboBox<TimeEventGroup> tegCombo = new JComboBox<>();

IpedStackedXYBarRenderer renderer = null;
XYLineAndShapeRenderer highlightsRenderer = new XYLineAndShapeRenderer();
Expand Down

0 comments on commit a241b6a

Please sign in to comment.