You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some classes like FlutterWidgetPerf
implement the Disposable interface but have dispose()
called manually which is counter to how dispose() should be called for a properly functioning IntelliJ plugin.
Mixing manual and automatic calls to dispose leads to confusing bugs like #6042
FlutterWidgetPerf.dispose() is called by FlutterWidgetPerfManager.dispose(), which is itself never called due to using the project as a dispose parent: Disposer.register(project, this);
Activity
stevemessick commentedon Apr 15, 2022
FlutterWidgetPerf.dispose()
is called byFlutterWidgetPerfManager.dispose()
, which is itself never called due to using the project as a dispose parent:Disposer.register(project, this);
We need to fix #6076 before working on this one.