We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83ab499 commit f66d18eCopy full SHA for f66d18e
flutter-idea/src/io/flutter/run/daemon/FlutterApp.java
@@ -780,8 +780,6 @@ class FlutterAppDaemonEventListener implements DaemonEvent.Listener {
780
private final @NotNull FlutterApp app;
781
private final @NotNull ProgressHelper progress;
782
783
- private final AtomicReference<Stopwatch> stopwatch = new AtomicReference<>();
784
-
785
FlutterAppDaemonEventListener(@NotNull FlutterApp app, @NotNull Project project) {
786
this.app = app;
787
this.progress = new ProgressHelper(project);
@@ -887,8 +885,6 @@ public void onAppProgressStarting(@NotNull DaemonEvent.AppProgress event) {
887
885
app.getConsole().clear();
888
886
}
889
890
891
- stopwatch.set(Stopwatch.createStarted());
892
893
894
if (app.getConsole() != null) {
0 commit comments