Commit 93fafcf8 authored by skylot's avatar skylot

Merge pull request #5 from dnet/master

removed unused private method getCodePanel(int)
parents 5c94e0bc 82cc88a1
......@@ -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();
}
......
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