Can't use removeNotify

This commit is contained in:
zzz
2022-01-12 08:21:28 -05:00
parent bef498cafe
commit cdcc40e871
2 changed files with 3 additions and 1 deletions

View File

@ -155,7 +155,7 @@ public class OverviewTab extends TabLogoPanel {
* @since 0.0.4
*/
@Override
public void removeNotify() {
public void destroy() {
running = false;
bwChart.destroy();
partTunnelChart.destroy();

View File

@ -11,4 +11,6 @@ public abstract class TabLogoPanel extends LogoPanel {
}
public abstract void onTabFocus(ChangeEvent e);
public void destroy() {};
}