removed unused private method getCodePanel(int)

parent 5c94e0bc
...@@ -95,14 +95,6 @@ class TabbedPane extends JTabbedPane { ...@@ -95,14 +95,6 @@ class TabbedPane extends JTabbedPane {
return panel; return panel;
} }
private CodePanel getCodePanel(int index) {
Component component = getComponent(index);
if (component instanceof CodePanel) {
return (CodePanel) component;
}
return null;
}
CodePanel getSelectedCodePanel() { CodePanel getSelectedCodePanel() {
return (CodePanel) getSelectedComponent(); return (CodePanel) getSelectedComponent();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment