Merge pull request #5 from dnet/master

removed unused private method getCodePanel(int)
This commit is contained in:
skylot
2014-04-02 22:03:57 +04:00
@@ -95,14 +95,6 @@ class TabbedPane extends JTabbedPane {
return panel;
}
private CodePanel getCodePanel(int index) {
Component component = getComponent(index);
if (component instanceof CodePanel) {
return (CodePanel) component;
}
return null;
}
CodePanel getSelectedCodePanel() {
return (CodePanel) getSelectedComponent();
}